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

Required Methods§

source

fn to_minimal_bits(&self) -> Vec<bool>

Returns self as a minimal boolean array.

Implementors§