pub enum FeatureKind {
Show 13 variants
Gene,
Exon,
Intron,
Cds,
Utr,
Promoter,
Enhancer,
Repeat,
Motif,
Variant,
Region,
Unknown,
Custom(String),
}Expand description
A descriptive feature kind.
Variants§
Gene
Gene feature.
Exon
Exon feature.
Intron
Intron feature.
Cds
Coding sequence feature.
Utr
Untranslated region feature.
Promoter
Promoter feature.
Enhancer
Enhancer feature.
Repeat
Repeat feature.
Motif
Motif feature.
Variant
Variant feature label.
Region
Generic region feature.
Unknown
Unknown feature kind.
Custom(String)
Domain-specific feature kind.
Trait Implementations§
Source§impl Clone for FeatureKind
impl Clone for FeatureKind
Source§fn clone(&self) -> FeatureKind
fn clone(&self) -> FeatureKind
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for FeatureKind
impl Debug for FeatureKind
Source§impl Display for FeatureKind
impl Display for FeatureKind
Source§impl FromStr for FeatureKind
impl FromStr for FeatureKind
Source§impl Hash for FeatureKind
impl Hash for FeatureKind
Source§impl Ord for FeatureKind
impl Ord for FeatureKind
Source§fn cmp(&self, other: &FeatureKind) -> Ordering
fn cmp(&self, other: &FeatureKind) -> Ordering
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 PartialEq for FeatureKind
impl PartialEq for FeatureKind
Source§fn eq(&self, other: &FeatureKind) -> bool
fn eq(&self, other: &FeatureKind) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for FeatureKind
impl PartialOrd for FeatureKind
impl Eq for FeatureKind
impl StructuralPartialEq for FeatureKind
Auto Trait Implementations§
impl Freeze for FeatureKind
impl RefUnwindSafe for FeatureKind
impl Send for FeatureKind
impl Sync for FeatureKind
impl Unpin for FeatureKind
impl UnsafeUnpin for FeatureKind
impl UnwindSafe for FeatureKind
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