1 2 3 4 5 6 7
use crate::ops::Located; pub trait Contiged<C> { type Contig: Located<C> + Eq; fn contig(&self) -> &Self::Contig; }