pub trait Bit: 'static + Sealed + Copy + Default {
const U8: u8;
const BOOL: bool;
fn new() -> Self;
fn to_u8() -> u8;
fn to_bool() -> bool;
}
Expand description
The marker trait for compile time bits.
pub trait Bit: 'static + Sealed + Copy + Default {
const U8: u8;
const BOOL: bool;
fn new() -> Self;
fn to_u8() -> u8;
fn to_bool() -> bool;
}
The marker trait for compile time bits.