Trait dw1000::ll::Writable[][src]

pub trait Writable {
    type Write;
    fn write() -> Self::Write;
fn buffer(w: &mut Self::Write) -> &mut [u8]; }
Expand description

Marker trait for registers that can be written to

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 write to the register

Required methods

Return the write type for this register

Return the write type’s internal buffer

Implementors