pub enum storage_types {
StorageValue,
StorageMap,
Unknown,
}
Expand description
enum for defining what type of storage entry it is, is it a StorageValue, StorageMap or Unknown type
Variants§
StorageValue
Substrate StorageValue
StorageMap
Substrate StorageMap
Unknown
Unknown type, could not detect the right type
Trait Implementations§
Source§impl Clone for storage_types
impl Clone for storage_types
Source§fn clone(&self) -> storage_types
fn clone(&self) -> storage_types
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 moreSource§impl Debug for storage_types
impl Debug for storage_types
Source§impl PartialEq for storage_types
impl PartialEq for storage_types
impl Copy for storage_types
impl StructuralPartialEq for storage_types
Auto Trait Implementations§
impl Freeze for storage_types
impl RefUnwindSafe for storage_types
impl Send for storage_types
impl Sync for storage_types
impl Unpin for storage_types
impl UnwindSafe for storage_types
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