Readable

Trait Readable 

Source
pub trait Readable: RegisterSpec {
    type Reader: From<R<Self>> + Deref<Target = R<Self>>;
}
Expand description

Trait implemented by readable registers to enable the read method.

Registers marked with Writable can be also modify’ed.

Required Associated Types§

Source

type Reader: From<R<Self>> + Deref<Target = R<Self>>

Result from a call to read and argument to modify.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl Readable for DBG_DLH_SPEC

read() method returns dbg_dlh::R reader structure

Source§

impl Readable for DBG_DLL_SPEC

read() method returns dbg_dll::R reader structure

Source§

impl Readable for DLH_SPEC

read() method returns dlh::R reader structure

Source§

impl Readable for DLL_SPEC

read() method returns dll::R reader structure

Source§

impl Readable for DMA_REQ_EN_SPEC

read() method returns dma_req_en::R reader structure

Source§

impl Readable for FCC_SPEC

read() method returns fcc::R reader structure

Source§

impl Readable for HALT_SPEC

read() method returns halt::R reader structure

Source§

impl Readable for HSK_SPEC

read() method returns hsk::R reader structure

Source§

impl Readable for IER_SPEC

read() method returns ier::R reader structure

Source§

impl Readable for IIR_SPEC

read() method returns iir::R reader structure

Source§

impl Readable for LCR_SPEC

read() method returns lcr::R reader structure

Source§

impl Readable for LSR_SPEC

read() method returns lsr::R reader structure

Source§

impl Readable for MCR_SPEC

read() method returns mcr::R reader structure

Source§

impl Readable for MSR_SPEC

read() method returns msr::R reader structure

Source§

impl Readable for RBR_SPEC

read() method returns rbr::R reader structure

Source§

impl Readable for RFL_SPEC

read() method returns rfl::R reader structure

Source§

impl Readable for SCH_SPEC

read() method returns sch::R reader structure

Source§

impl Readable for TFL_SPEC

read() method returns tfl::R reader structure

Source§

impl Readable for USR_SPEC

read() method returns usr::R reader structure