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

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

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

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 as RegField<T>>::Reg: WoReg<T>, 
[src]

Loading content...