pub unsafe fn from_chunk_iter_unchecked<T, I>(iterator: I) -> Vec<u8, Global>Notable traits for Vec<u8, A>impl<A> Write for Vec<u8, A> where
    A: Allocator
where
    T: BitChunk,
    I: Iterator<Item = T>, 
Expand description

Creates a Vec from an Iterator of BitChunk.

Safety

The iterator must be TrustedLen.