1 2 3 4 5 6 7 8
use super::SegmentSet; pub mod identity; pub mod log_strategy; pub trait PartitionStrategy { fn partition(&self, segments: &SegmentSet) -> Vec<SegmentSet>; }