Trait RtTreeTrimTask

Source
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.

Required Methods§

Source

fn process(&self, snapshot: TreeSnapshot<'_>) -> RtResult<TrimRequest>

Implementors§