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

Describes the ability to convert itself from a BitChunk.

Required Methods§

source

fn from_chunk(v: T) -> Self

Convert itself from a slice.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T> FromMaskChunk<T> for T
where T: BitChunk,