Enum noodles_gff::record::strand::Strand
source · pub enum Strand {
None,
Forward,
Reverse,
Unknown,
}
Expand description
A GFF record strand.
Variants§
None
Unstranded (.
).
Forward
Forward strand (+
).
Reverse
Reverse strand (-
).
Unknown
Strandedness is relevant but unknown (?
).
Trait Implementations§
source§impl PartialEq for Strand
impl PartialEq for Strand
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 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
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.