Struct io::Mmio [] [src]

pub struct Mmio<T> {
    value: T,
}

Fields

value

Trait Implementations

impl<T> Io<T> for Mmio<T>

fn read(&self) -> T

fn write(&mut self, value: T)

fn readf(&self, flags: T) -> bool where T: BitAnd<Output=T> + PartialEq<T> + Copy

fn writef(&mut self, flags: T, value: bool) where T: BitAnd<Output=T> + BitOr<Output=T> + Not<Output=T>