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§
Sourcefn from_chunk(v: T) -> Self
fn from_chunk(v: T) -> Self
Convert itself from a slice.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.