Trait drone_core::reg::RegRaw [] [src]

pub trait RegRaw: Sized + Zeroable + Debug + Copy + PartialOrd + Not<Output = Self> + Sub<Output = Self> + BitOr<Output = Self> + BitXor<Output = Self> + BitAnd<Output = Self> + Shl<Self, Output = Self> + Shr<Self, Output = Self> {
    fn from_usize(raw: usize) -> Self;
fn size() -> Self;
fn one() -> Self; }

Raw register value type.

Required Methods

Creates a RegRaw from usize

Size of the type in bits.

Returns one.

Implementors