pub trait WpmrModify:
WpmrRead
+ WpmrWrite
+ WpmrWriteWithZero {
// Required method
fn modify<F>(&self, f: F)
where for<'w> F: FnOnce(&<Self as WpmrRead>::R, &'w mut <Self as WpmrWrite>::W) -> &'w mut <Self as WpmrWrite>::W;
}Required Methods§
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.