pub enum GeneType {
ProteinCoding,
LncRNA,
MiRNA,
RRNA,
TRNA,
Pseudogene,
Other(String),
}Expand description
Classification of a gene’s biotype.
Variants§
Trait Implementations§
impl Eq for GeneType
impl StructuralPartialEq for GeneType
Auto Trait Implementations§
impl Freeze for GeneType
impl RefUnwindSafe for GeneType
impl Send for GeneType
impl Sync for GeneType
impl Unpin for GeneType
impl UnsafeUnpin for GeneType
impl UnwindSafe for GeneType
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