pub trait Lane: Copy + Default {
// Required methods
fn fit(value: i64) -> Option<Self>;
fn wrap(value: i64) -> Self;
}Expand description
An integer type a chunk can be decoded straight into. See decode_as.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".