pub enum StorageEntryType {
Plain(u32),
Map {
hashers: Vec<StorageHasher>,
key_ty: u32,
value_ty: u32,
},
}Expand description
The type of a storage entry.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for StorageEntryType
impl Clone for StorageEntryType
Source§fn clone(&self) -> StorageEntryType
fn clone(&self) -> StorageEntryType
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for StorageEntryType
impl RefUnwindSafe for StorageEntryType
impl Send for StorageEntryType
impl Sync for StorageEntryType
impl Unpin for StorageEntryType
impl UnwindSafe for StorageEntryType
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more