[][src]Trait drone_cortex_m::reg::marker::WoWoRegFieldBits

pub trait WoWoRegFieldBits<T>: RegFieldBits<T> + WoWRegField<T> where
    T: RegTag,
    Self::Reg: WoReg<T>, 
{ fn write_bits(&self, bits: <<Self::Reg as Reg<T>>::Val as Bitfield>::Bits); }

Write-only multiple-bit field of write-only register.

Required methods

fn write_bits(&self, bits: <<Self::Reg as Reg<T>>::Val as Bitfield>::Bits)

Writes the reset value with the field bits replaced by bits into the register memory.

Loading content...

Implementors

impl<T, R> WoWoRegFieldBits<T> for R where
    R: RegFieldBits<T> + WoWRegField<T>,
    T: RegTag,
    <R as RegField<T>>::Reg: WoReg<T>, 
[src]

Loading content...