#[repr(u8)]pub enum Strand {
Positive = 0,
Negative = 1,
}Expand description
The strand of a double-stranded molecule.
For a more in-depth discussion on this, please see this section of the docs.
Variants§
Positive = 0
The positive strand (+).
This is also known as the sense strand.
Negative = 1
The negative strand (-).
This is also known as the antisense strand.
Implementations§
Trait Implementations§
impl Copy for Strand
impl Eq for Strand
Source§impl Ord for Strand
impl Ord for Strand
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialOrd for Strand
impl PartialOrd 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