Enum noodles_gff::record::Phase
source · pub enum Phase {
Zero,
One,
Two,
}
Expand description
A GFF record phase.
The phase is used for CDS (coding sequence) features to describe where the next codon begins relative to the 5’ end.
Variants§
Zero
The codon begins at the first nucleotide (0
).
One
The codon begins at the second nucleotide (1
).
Two
The codon begins at the third nucleotide (2
).
Trait Implementations§
source§impl PartialEq for Phase
impl PartialEq for Phase
impl Copy for Phase
impl Eq for Phase
impl StructuralPartialEq for Phase
Auto Trait Implementations§
impl Freeze for Phase
impl RefUnwindSafe for Phase
impl Send for Phase
impl Sync for Phase
impl Unpin for Phase
impl UnwindSafe for Phase
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.