pub trait FieldStorage {
    type StoredType;
    // Required method
    fn inner_raw(self) -> Self::StoredType;
}Expand description
A type which can be a field of a bit_struct
Required Associated Types§
Sourcetype StoredType
 
type StoredType
The type this field stores as
Required Methods§
Sourcefn inner_raw(self) -> Self::StoredType
 
fn inner_raw(self) -> Self::StoredType
Get the raw representation of this value