pub trait BWriterWithZero {
type W: BWriterFields;
// Required method
unsafe fn write_with_zero<F>(&self, f: F)
where F: FnOnce(&mut Self::W) -> &mut Self::W;
}Expand description
Reg::write_with_zero as a trait.
Required Associated Types§
type W: BWriterFields
Required Methods§
Sourceunsafe fn write_with_zero<F>(&self, f: F)
unsafe fn write_with_zero<F>(&self, f: F)
See Reg::write_with_zero.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.