Trait proc_bitfield::Bitfield
source · pub trait Bitfield {
type Storage;
// Required methods
fn from_storage(storage: Self::Storage) -> Self;
fn into_storage(self) -> Self::Storage;
fn storage(&self) -> &Self::Storage;
fn storage_mut(&mut self) -> &mut Self::Storage;
}
Required Associated Types§
Required Methods§
fn from_storage(storage: Self::Storage) -> Self
fn into_storage(self) -> Self::Storage
fn storage(&self) -> &Self::Storage
fn storage_mut(&mut self) -> &mut Self::Storage
Object Safety§
This trait is not object safe.