pub struct NucPair(/* private fields */);Expand description
A pair of nucleotides (bit-packing for FM-index)
Represents two nucleotides packed into a single byte:
- Bits 0-1: first nucleotide
- Bits 2-3: second nucleotide
- Bits 4-7: unused
Implementations§
Trait Implementations§
impl Copy for NucPair
impl Eq for NucPair
impl StructuralPartialEq for NucPair
Auto Trait Implementations§
impl Freeze for NucPair
impl RefUnwindSafe for NucPair
impl Send for NucPair
impl Sync for NucPair
impl Unpin for NucPair
impl UnsafeUnpin for NucPair
impl UnwindSafe for NucPair
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