pub trait ModifyAddressValue {
type Word;
// Required method
fn modify_address_value<F>(self, f: F)
where F: FnOnce(&Self::Word) -> Self::Word;
}
Required Associated Types§
Required Methods§
fn modify_address_value<F>(self, f: F)
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.