mito2::compaction::run

Trait Item

Source
pub(crate) trait Item: Ranged + Clone {
    // Required method
    fn size(&self) -> usize;
}
Expand description

Trait for items to merge.

Required Methods§

Source

fn size(&self) -> usize

Size is used to calculate the cost of merging items.

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.

Implementors§