pub enum Variant<N: Nucleotide> {
SingleNucleotideVariation(Variant<N>),
}Expand description
A variant.
Variants§
Trait Implementations§
Source§impl<N: Nucleotide> Display for Variant<N>
impl<N: Nucleotide> Display for Variant<N>
Auto Trait Implementations§
impl<N> Freeze for Variant<N>where
N: Freeze,
impl<N> RefUnwindSafe for Variant<N>where
N: RefUnwindSafe,
impl<N> Send for Variant<N>where
N: Send,
impl<N> Sync for Variant<N>where
N: Sync,
impl<N> Unpin for Variant<N>where
N: Unpin,
impl<N> UnwindSafe for Variant<N>where
N: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more