Enum subxt_metadata::StorageEntryType
source · pub enum StorageEntryType {
Plain(u32),
Map {
hashers: Vec<StorageHasher>,
key_ty: u32,
value_ty: u32,
},
}Expand description
The type of a storage entry.
Variants§
Plain(u32)
Plain storage entry (just the value).
Map
Fields
§
hashers: Vec<StorageHasher>One or more hashers, should be one hasher per key element.
A storage map.
Implementations§
Trait Implementations§
source§impl Clone for StorageEntryType
impl Clone for StorageEntryType
source§fn clone(&self) -> StorageEntryType
fn clone(&self) -> StorageEntryType
Returns a copy 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 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