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§
Object Safety§
This trait is not object safe.