Trait drone_core::reg::RRegFieldBit [] [src]

pub trait RRegFieldBit<T: RegTag> where
    Self: RegFieldBit<T> + RRegField<T>,
    Self::Reg: RReg<T>, 
{ fn read(&self, val: &<Self::Reg as Reg<T>>::Val) -> bool;
fn read_bit(&self) -> bool; }

Single-bit register field that can read its value.

Required Methods

Reads the state of the bit from val.

Reads the state of the bit from memory.

Implementors