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§
Trait Implementations§
Source§impl Clone for BitsStoreFormat
impl Clone for BitsStoreFormat
Source§fn clone(&self) -> BitsStoreFormat
fn clone(&self) -> BitsStoreFormat
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 moreSource§impl Debug for BitsStoreFormat
impl Debug for BitsStoreFormat
Source§impl PartialEq for BitsStoreFormat
impl PartialEq for BitsStoreFormat
impl Copy for BitsStoreFormat
impl Eq for BitsStoreFormat
impl StructuralPartialEq for BitsStoreFormat
Auto Trait Implementations§
impl Freeze for BitsStoreFormat
impl RefUnwindSafe for BitsStoreFormat
impl Send for BitsStoreFormat
impl Sync for BitsStoreFormat
impl Unpin for BitsStoreFormat
impl UnwindSafe for BitsStoreFormat
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