pub trait ToBits: Sized {
    fn to_bits_le(&self) -> Vec<bool>Notable traits for Vec<u8, A>impl<A> Write for Vec<u8, A> where
    A: Allocator
;
fn to_bits_be(&self) -> Vec<bool>Notable traits for Vec<u8, A>impl<A> Write for Vec<u8, A> where
    A: Allocator
; }

Required methods

Returns self as a boolean array in little-endian order.

Returns self as a boolean array in big-endian order.

Implementors