pub trait Unpackable {
// Required method
fn unpack(val: u64) -> Self;
}Expand description
A helper trait to unpack u64 into various types for the BitPacked macro.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".