Enum scale_bits::scale::format::StoreFormat
source · [−]pub enum StoreFormat {
U8,
U16,
U32,
U64,
}
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
.
U64
Equivalent to u64
.
Trait Implementations
sourceimpl Clone for StoreFormat
impl Clone for StoreFormat
sourcefn clone(&self) -> StoreFormat
fn clone(&self) -> StoreFormat
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for StoreFormat
impl Debug for StoreFormat
sourceimpl PartialEq<StoreFormat> for StoreFormat
impl PartialEq<StoreFormat> for StoreFormat
sourcefn eq(&self, other: &StoreFormat) -> bool
fn eq(&self, other: &StoreFormat) -> bool
impl Copy for StoreFormat
impl Eq for StoreFormat
impl StructuralEq for StoreFormat
impl StructuralPartialEq for StoreFormat
Auto Trait Implementations
impl RefUnwindSafe for StoreFormat
impl Send for StoreFormat
impl Sync for StoreFormat
impl Unpin for StoreFormat
impl UnwindSafe for StoreFormat
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