pub trait Bit:
Clone
+ Copy
+ PartialEq
+ Debug {
const LOW: Self;
const HIGH: Self;
}
Expand description
Abstract “bit” type used in MatrixMap.
Required 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.