Trait drone_riscv::reg::field::WWRegFieldBits[][src]

pub trait WWRegFieldBits<T>: RegFieldBits<T> + WWRegField<T> where
    T: RegTag,
    Self::Reg: WReg<T>, 
{ pub fn write(
        &self,
        val: &mut <Self::Reg as Reg<T>>::Val,
        bits: <<Self::Reg as Reg<T>>::Val as Bitfield>::Bits
    ); }

Writable multiple-bit field of writable register.

Required methods

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

Replaces the field bits in val by bits.

Loading content...

Implementors

impl<T, R> WWRegFieldBits<T> for R where
    T: RegTag,
    R: RegFieldBits<T> + WWRegField<T>,
    <R as RegField<T>>::Reg: WReg<T>, 
[src]

Loading content...