pub trait UnderlierType:
Debug
+ Default
+ PartialEq
+ Eq
+ PartialOrd
+ Ord
+ ConstantTimeEq
+ Copy
+ Random
+ NoUninit
+ Zeroable
+ Sized
+ Send
+ Sync
+ 'static {
const LOG_BITS: usize;
const BITS: usize = _;
}
Expand description
Primitive integer underlying a binary field or packed binary field implementation. Note that this type is not guaranteed to be POD, U1, U2 and U4 have some unused bits.
Required Associated Constants§
Provided Associated Constants§
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.