pub trait FieldStorage {
    type StoredType;

    fn inner_raw(self) -> Self::StoredType;
}
Expand description

A type which can be a field of a bit_struct

Required Associated Types

The type this field stores as

Required Methods

Get the raw representation of this value

Implementations on Foreign Types

Implementors