pub enum CellOrganelle {
Nucleus,
Mitochondrion,
Chloroplast,
Ribosome,
CellMembrane,
CellWall,
Cytoplasm,
GolgiApparatus,
EndoplasmicReticulum,
Vacuole,
Unknown,
Custom(String),
}Expand description
Primitive cell organelle vocabulary.
Variants§
Nucleus
Nucleus.
Mitochondrion
Mitochondrion.
Chloroplast
Chloroplast.
Ribosome
Ribosome.
CellMembrane
Cell membrane.
CellWall
Cell wall.
Cytoplasm
Cytoplasm.
GolgiApparatus
Golgi apparatus.
EndoplasmicReticulum
Endoplasmic reticulum.
Vacuole
Vacuole.
Unknown
Unknown organelle.
Custom(String)
Caller-defined organelle text.
Trait Implementations§
Source§impl Clone for CellOrganelle
impl Clone for CellOrganelle
Source§fn clone(&self) -> CellOrganelle
fn clone(&self) -> CellOrganelle
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 CellOrganelle
impl Debug for CellOrganelle
Source§impl Display for CellOrganelle
impl Display for CellOrganelle
Source§impl From<CellOrganelle> for CellStructure
impl From<CellOrganelle> for CellStructure
Source§fn from(organelle: CellOrganelle) -> Self
fn from(organelle: CellOrganelle) -> Self
Converts to this type from the input type.
Source§impl FromStr for CellOrganelle
impl FromStr for CellOrganelle
Source§impl Hash for CellOrganelle
impl Hash for CellOrganelle
Source§impl Ord for CellOrganelle
impl Ord for CellOrganelle
Source§fn cmp(&self, other: &CellOrganelle) -> Ordering
fn cmp(&self, other: &CellOrganelle) -> Ordering
1.21.0 · 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 CellOrganelle
impl PartialEq for CellOrganelle
Source§impl PartialOrd for CellOrganelle
impl PartialOrd for CellOrganelle
impl Eq for CellOrganelle
impl StructuralPartialEq for CellOrganelle
Auto Trait Implementations§
impl Freeze for CellOrganelle
impl RefUnwindSafe for CellOrganelle
impl Send for CellOrganelle
impl Sync for CellOrganelle
impl Unpin for CellOrganelle
impl UnsafeUnpin for CellOrganelle
impl UnwindSafe for CellOrganelle
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