pub unsafe trait EevSrcBits<const EEV_N: u8>: Sized {
const SRC_BITS: u8;
// Provided method
fn cfg(self) { ... }
}
Expand description
This is implemented for types that can be used as inputs to the eev
§Safety
Only implement for types that can be used as sources to eev number EEV_N
with src bits SRC_BITS
Required Associated Constants§
Provided 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.