[][src]Trait drone_core::reg::field::WoWoRegFieldBits

pub trait WoWoRegFieldBits<T: RegTag> where
    Self: RegFieldBits<T> + WoWRegField<T>,
    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
    T: RegTag,
    R: RegFieldBits<T> + WoWRegField<T>,
    R::Reg: WoReg<T>, 
[src]

Loading content...