pub trait RtTreeTrimTask: Send {
// Required method
fn process(&self, snapshot: TreeSnapshot<'_>) -> RtResult<TrimRequest>;
}Expand description
The task that takes the original tree and returns a part of the tree that needs to be modified.
pub trait RtTreeTrimTask: Send {
// Required method
fn process(&self, snapshot: TreeSnapshot<'_>) -> RtResult<TrimRequest>;
}The task that takes the original tree and returns a part of the tree that needs to be modified.