pub enum PairingMode {
None,
Interleaved,
}Expand description
Pairing interpretation for a single FASTQ stream.
Variants§
None
Records are yielded independently.
Interleaved
Adjacent records are expected to be ordered mates.
Trait Implementations§
Source§impl Clone for PairingMode
impl Clone for PairingMode
Source§fn clone(&self) -> PairingMode
fn clone(&self) -> PairingMode
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 PairingMode
Source§impl Debug for PairingMode
impl Debug for PairingMode
impl Eq for PairingMode
Source§impl PartialEq for PairingMode
impl PartialEq for PairingMode
Source§fn eq(&self, other: &PairingMode) -> bool
fn eq(&self, other: &PairingMode) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PairingMode
Auto Trait Implementations§
impl Freeze for PairingMode
impl RefUnwindSafe for PairingMode
impl Send for PairingMode
impl Sync for PairingMode
impl Unpin for PairingMode
impl UnsafeUnpin for PairingMode
impl UnwindSafe for PairingMode
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