Enum CellOrganelle
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§
§impl Clone for CellOrganelle
impl Clone for CellOrganelle
§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 more§impl Debug for CellOrganelle
impl Debug for CellOrganelle
§impl Display for CellOrganelle
impl Display for CellOrganelle
§impl From<CellOrganelle> for CellStructure
impl From<CellOrganelle> for CellStructure
§fn from(organelle: CellOrganelle) -> CellStructure
fn from(organelle: CellOrganelle) -> CellStructure
Converts to this type from the input type.
§impl FromStr for CellOrganelle
impl FromStr for CellOrganelle
§type Err = CellOrganelleParseError
type Err = CellOrganelleParseError
The associated error which can be returned from parsing.
§fn from_str(
value: &str,
) -> Result<CellOrganelle, <CellOrganelle as FromStr>::Err>
fn from_str( value: &str, ) -> Result<CellOrganelle, <CellOrganelle as FromStr>::Err>
Parses a string
s to return a value of this type. Read more§impl Hash for CellOrganelle
impl Hash for CellOrganelle
§impl Ord for CellOrganelle
impl Ord for CellOrganelle
§impl PartialEq for CellOrganelle
impl PartialEq for CellOrganelle
§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