pub trait ToMinimalBits: Sized {
    fn to_minimal_bits(&self) -> Vec<bool> ;
}

Required Methods

Returns self as a minimal boolean array.

Implementors