//! Trait for sequential representation of genomes
usebit_vec::BitVec;// TODO(will): determine what traits ought to be required for this
/// Marker trait for structs that can be used as sequential representations of
/// a genome
pubtraitSequence: Clone {}impl<C:Clone> Sequence forVec<C>{}implSequence forBitVec{}