pub trait GcRegisterExtManual {
    // Required methods
    fn get_raw(&self, buffer: &mut [u8]) -> Result<(), Error>;
    fn set_raw(&self, buffer: &[u8]) -> Result<(), Error>;
}
Expand description

Trait containing additional [GcRegister] methods.

It is prefereable to use the typed interfaces like those those available in DeviceExt when possible.

Required Methods§

source

fn get_raw(&self, buffer: &mut [u8]) -> Result<(), Error>

Get the contents of the register.

source

fn set_raw(&self, buffer: &[u8]) -> Result<(), Error>

Set the contents of the register.

Implementors§