Trait dw1000::ll::Readable[][src]

pub trait Readable {
    type Read;
    fn read() -> Self::Read;
fn buffer(r: &mut Self::Read) -> &mut [u8]; }
Expand description

Marker trait for registers that can be read from

This is a mostly internal crate that should not be implemented or used directly by users of this crate. It is exposed through the public API though, so it can’t be made private.

Associated Types

The type that is used to read from the register

Required methods

Return the read type for this register

Return the read type’s internal buffer

Implementors