Trait zordon::types::ModByteView[][src]

pub trait ModByteView<'a, T> {
    fn val(&self) -> T;
fn set(&mut self, v: T); }
Expand description

For getting/setting single byte values.

Required methods

Return a copy of the underlying value T.

Set the underlying value to T.

Implementors