[−][src]Trait drone_cortex_m::reg::field::WoWoRegField
Write-only field of write-only register.
Required methods
fn default_val(&self) -> <Self::Reg as Reg<T>>::Val
Creates a new opaque register value, and initializes it with the reset value.
fn store_val(&self, val: <Self::Reg as Reg<T>>::Val)
Writes an opaque value val
into the register memory.
See also store
.
fn store<F>(&self, f: F) where
F: Fn(&mut <Self::Reg as Reg<T>>::Val),
F: Fn(&mut <Self::Reg as Reg<T>>::Val),
Passes the opaque reset value to the closure f
, then writes the result
of the closure into the register memory.
See also store_val
.
Implementors
impl<T, R> WoWoRegField<T> for R where
R: WoWRegField<T>,
T: RegTag,
<R as RegField<T>>::Reg: WoReg<T>,
[src]
R: WoWRegField<T>,
T: RegTag,
<R as RegField<T>>::Reg: WoReg<T>,