macro_rules! to_bits_le {
    ($($x:expr),*) => { ... };
    ($($x:expr),*; $size:expr) => { ... };
}
Expand description

Takes as input a sequence of objects, and converts them to a series of little-endian bits. All traits that implement ToBits can be automatically converted to bits in this manner.