pub trait PrunableStore: LogStore {
// Required method
fn prune(
&mut self,
loc: Location,
) -> impl Future<Output = Result<(), Error>> + Send;
}Expand description
A trait for stores that can be pruned.
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.