pub trait PersistPolicy<PK> {
// Required method
fn push_persist_keys_for_range<F>(
&self,
addr: u16,
len: usize,
push_key: F,
) -> bool
where F: FnMut(PK);
}Expand description
Determines which regions require persistence and emits keys for them.
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.