pub trait Bits<T> {
// Required method
fn bits<const START: usize, const END: usize>(&self) -> T;
}
Expand description
Read a range of bits inside a value.
Required Methods§
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.