pub trait BitViewSized: BitView + Sized {
    const ZERO: Self;
    // Required methods
    fn as_raw_slice(&self) -> &[Self::Store];
    fn as_raw_mut_slice(&mut self) -> &mut [Self::Store];
    // Provided method
    fn into_bitarray<O>(self) -> BitArray<Self, O>
       where O: BitOrder { ... }
}Expand description
Helper trait for scalars and arrays, but not slices.
Required Associated Constants§
Required Methods§
Sourcefn as_raw_slice(&self) -> &[Self::Store]
 
fn as_raw_slice(&self) -> &[Self::Store]
Views the type as a slice of its elements.
Sourcefn as_raw_mut_slice(&mut self) -> &mut [Self::Store]
 
fn as_raw_mut_slice(&mut self) -> &mut [Self::Store]
Views the type as a mutable slice of its elements.
Provided Methods§
Sourcefn into_bitarray<O>(self) -> BitArray<Self, O>where
    O: BitOrder,
 
fn into_bitarray<O>(self) -> BitArray<Self, O>where
    O: BitOrder,
Wraps self in a BitArray.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.