Enum read_structure::SegmentType
source · [−]#[non_exhaustive]
#[repr(u8)]
pub enum SegmentType {
Template,
SampleBarcode,
MolecularBarcode,
Skip,
}Expand description
The SegmentType type. See the module level documentation for more.
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
Template
Template: the bases in the segment are reads of template (e.g. genomic dna, rna, etc.)
SampleBarcode
Sample Barcode: the bases in the segment are an index sequence used to identify the sample being sequenced
MolecularBarcode
Molecular Barcode: the bases in the segment are an index sequence used to identify the unique source molecule being sequence (i.e. a UMI)
Skip
Skip: the bases in the segment should be skipped or ignored, for example if they are monotemplate sequence generated by the library preparation
Implementations
sourceimpl SegmentType
impl SegmentType
Trait Implementations
sourceimpl Clone for SegmentType
impl Clone for SegmentType
sourcefn clone(&self) -> SegmentType
fn clone(&self) -> SegmentType
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for SegmentType
impl Debug for SegmentType
sourceimpl Hash for SegmentType
impl Hash for SegmentType
sourceimpl IntoEnumIterator for SegmentType
impl IntoEnumIterator for SegmentType
type Iterator = SegmentTypeIter
fn iter() -> SegmentTypeIterⓘNotable traits for SegmentTypeIterimpl Iterator for SegmentTypeIter type Item = SegmentType;
sourceimpl Ord for SegmentType
impl Ord for SegmentType
sourceimpl PartialEq<SegmentType> for SegmentType
impl PartialEq<SegmentType> for SegmentType
sourceimpl PartialOrd<SegmentType> for SegmentType
impl PartialOrd<SegmentType> for SegmentType
sourcefn partial_cmp(&self, other: &SegmentType) -> Option<Ordering>
fn partial_cmp(&self, other: &SegmentType) -> Option<Ordering>
This method returns an ordering between self and other values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self and other) and is used by the <=
operator. Read more
sourceimpl TryFrom<char> for SegmentType
impl TryFrom<char> for SegmentType
sourceimpl TryFrom<u8> for SegmentType
impl TryFrom<u8> for SegmentType
impl Copy for SegmentType
impl Eq for SegmentType
impl StructuralEq for SegmentType
impl StructuralPartialEq for SegmentType
Auto Trait Implementations
impl RefUnwindSafe for SegmentType
impl Send for SegmentType
impl Sync for SegmentType
impl Unpin for SegmentType
impl UnwindSafe for SegmentType
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more