pub enum QualityEncoding {
Phred33,
Phred64,
}Expand description
Quality score encoding scheme
Variants§
Phred33
Phred+33 (Sanger, Illumina 1.8+) - standard modern format
Phred64
Phred+64 (Illumina 1.3-1.7) - legacy format
Implementations§
Trait Implementations§
Source§impl Clone for QualityEncoding
impl Clone for QualityEncoding
Source§fn clone(&self) -> QualityEncoding
fn clone(&self) -> QualityEncoding
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for QualityEncoding
impl Debug for QualityEncoding
Source§impl PartialEq for QualityEncoding
impl PartialEq for QualityEncoding
impl Copy for QualityEncoding
impl Eq for QualityEncoding
impl StructuralPartialEq for QualityEncoding
Auto Trait Implementations§
impl Freeze for QualityEncoding
impl RefUnwindSafe for QualityEncoding
impl Send for QualityEncoding
impl Sync for QualityEncoding
impl Unpin for QualityEncoding
impl UnsafeUnpin for QualityEncoding
impl UnwindSafe for QualityEncoding
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more