pub trait RawReg:
Copy
+ Default
+ From<bool>
+ BitOr<Output = Self>
+ BitAnd<Output = Self>
+ BitOrAssign
+ BitAndAssign
+ Not<Output = Self>
+ Shl<u8, Output = Self> {
// Required methods
fn mask<const WI: u8>() -> Self;
fn one() -> Self;
}
Expand description
Raw register type (u8
, u16
, u32
, …)
Required Methods§
Object Safety§
This trait is not object safe.