pub trait BitStruct<const ALWAYS_VALID: bool> {
    type Kind;
    unsafe fn from_unchecked(value: Self::Kind) -> Self;
}

Associated Types

Required methods

Implementors