Trait roach::ArchiveType
source · pub trait ArchiveType<K: 'static + ?Sized> {
type Key: for<'a> BinaryConverter<'a, Target = K> + ?Sized;
type Value: for<'a> DataLoad<'a> + ?Sized;
const TYPE_NAME: &'static str = _;
}Expand description
Defines a type of key-value pair which may be stored in an archive.
Required Associated Types§
Provided Associated Constants§
Object Safety§
This trait is not object safe.