pub enum GeneticCodeId {
Standard = 1,
VertebrateMitochondrial = 2,
YeastMitochondrial = 3,
MycoplasmaSpiroplasma = 4,
InvertebrateMitochondrial = 5,
CiliateNuclear = 6,
BacterialPlastid = 11,
}Expand description
NCBI genetic code table identifier.
Covers the 7 most commonly used tables.
Variants§
Standard = 1
VertebrateMitochondrial = 2
YeastMitochondrial = 3
MycoplasmaSpiroplasma = 4
InvertebrateMitochondrial = 5
CiliateNuclear = 6
BacterialPlastid = 11
Trait Implementations§
Source§impl Clone for GeneticCodeId
impl Clone for GeneticCodeId
Source§fn clone(&self) -> GeneticCodeId
fn clone(&self) -> GeneticCodeId
Returns a duplicate of the value. Read more
1.0.0 · 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 GeneticCodeId
impl Debug for GeneticCodeId
Source§impl Hash for GeneticCodeId
impl Hash for GeneticCodeId
Source§impl PartialEq for GeneticCodeId
impl PartialEq for GeneticCodeId
impl Copy for GeneticCodeId
impl Eq for GeneticCodeId
impl StructuralPartialEq for GeneticCodeId
Auto Trait Implementations§
impl Freeze for GeneticCodeId
impl RefUnwindSafe for GeneticCodeId
impl Send for GeneticCodeId
impl Sync for GeneticCodeId
impl Unpin for GeneticCodeId
impl UnsafeUnpin for GeneticCodeId
impl UnwindSafe for GeneticCodeId
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