Enum scale_bits::dynamic::StoreType
source · [−]pub enum StoreType {
U8,
U16,
U32,
}
Expand description
This is a runtime representation of the store type that we’re targeting. These
are equivalent to the bitvec
store types u8
, u16
and so on.
Variants
U8
Equivalent to u8
.
U16
Equivalent to u16
.
U32
Equivalent to u32
.
Trait Implementations
sourceimpl PartialEq<StoreType> for StoreType
impl PartialEq<StoreType> for StoreType
impl Copy for StoreType
impl Eq for StoreType
impl StructuralEq for StoreType
impl StructuralPartialEq for StoreType
Auto Trait Implementations
impl RefUnwindSafe for StoreType
impl Send for StoreType
impl Sync for StoreType
impl Unpin for StoreType
impl UnwindSafe for StoreType
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more