Trait drone::reg::RegRaw [] [src]

pub trait RegRaw where
    Self: Debug + Copy + Default + PartialOrd + BitAndAssign + BitOrAssign + BitAnd<Output = Self> + Not<Output = Self> + Sub<Output = Self> + Shl<Self, Output = Self> + Shr<Self, Output = Self>, 
{ fn size_in_bits() -> Self;
fn zero() -> Self;
fn one() -> Self; }

Raw register value type.

Required Methods

Size of the type in bits.

Returns zero.

Returns one.

Implementors