pub enum PackedBase {
A,
C,
G,
T,
N,
}Expand description
Decoded base value from a packed sequence.
Variants§
Trait Implementations§
Source§impl Clone for PackedBase
impl Clone for PackedBase
Source§fn clone(&self) -> PackedBase
fn clone(&self) -> PackedBase
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for PackedBase
Source§impl Debug for PackedBase
impl Debug for PackedBase
impl Eq for PackedBase
Source§impl PartialEq for PackedBase
impl PartialEq for PackedBase
Source§fn eq(&self, other: &PackedBase) -> bool
fn eq(&self, other: &PackedBase) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PackedBase
Auto Trait Implementations§
impl Freeze for PackedBase
impl RefUnwindSafe for PackedBase
impl Send for PackedBase
impl Sync for PackedBase
impl Unpin for PackedBase
impl UnsafeUnpin for PackedBase
impl UnwindSafe for PackedBase
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