pub enum PhredEncoding {
Phred33,
Phred64,
}Expand description
Quality score encoding scheme.
Variants§
Phred33
Phred+33 (Sanger / Illumina 1.8+). Most common modern encoding.
Phred64
Phred+64 (Illumina 1.3–1.7).
Trait Implementations§
Source§impl Clone for PhredEncoding
impl Clone for PhredEncoding
Source§fn clone(&self) -> PhredEncoding
fn clone(&self) -> PhredEncoding
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 PhredEncoding
impl Debug for PhredEncoding
Source§impl PartialEq for PhredEncoding
impl PartialEq for PhredEncoding
impl Copy for PhredEncoding
impl Eq for PhredEncoding
impl StructuralPartialEq for PhredEncoding
Auto Trait Implementations§
impl Freeze for PhredEncoding
impl RefUnwindSafe for PhredEncoding
impl Send for PhredEncoding
impl Sync for PhredEncoding
impl Unpin for PhredEncoding
impl UnsafeUnpin for PhredEncoding
impl UnwindSafe for PhredEncoding
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