pub trait FromMaskChunk<T> {
    fn from_chunk(v: T) -> Self;
}
Expand description

Describes the ability to convert itself from a BitChunk.

Required Methods

Convert itself from a slice.

Implementors