pub trait RangeContainer {
type InternalRangeType;
// Required methods
fn len(&self) -> usize;
fn sequence_length(&self) -> Position;
// Provided method
fn is_empty(&self) -> bool { ... }
}Expand description
Defines functionality common to all range containers, e.g. VecRanges<R> and
COITrees.
Required Associated Types§
Required Methods§
Provided Methods§
Implementors§
Source§impl<M: Clone> RangeContainer for COITrees<M>
RangeContainer trait implementations.
impl<M: Clone> RangeContainer for COITrees<M>
RangeContainer trait implementations.