#[non_exhaustive]pub enum Strand {
Plus,
Minus,
}Expand description
Transcript strand orientation relative to the reference genome.
Marked #[non_exhaustive] so future assemblies with unknown / ambiguous
strand annotations can extend this enum without a SemVer break.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Plus
Plus strand (5’→3’ runs in the direction of increasing genomic coordinate).
Minus
Minus strand (5’→3’ runs in the direction of decreasing genomic coordinate).
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Strand
impl<'de> Deserialize<'de> for Strand
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Copy for Strand
impl Eq for Strand
impl StructuralPartialEq for Strand
Auto Trait Implementations§
impl Freeze for Strand
impl RefUnwindSafe for Strand
impl Send for Strand
impl Sync for Strand
impl Unpin for Strand
impl UnsafeUnpin for Strand
impl UnwindSafe for Strand
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