pub enum BiologicalSystemKind {
Show 13 variants
Nervous,
Circulatory,
Respiratory,
Digestive,
Endocrine,
Immune,
Reproductive,
Musculoskeletal,
RootSystem,
ShootSystem,
VascularSystem,
Unknown,
Custom(String),
}Expand description
Biological system kind vocabulary.
Variants§
Nervous
Nervous system.
Circulatory
Circulatory system.
Respiratory
Respiratory system.
Digestive
Digestive system.
Endocrine
Endocrine system.
Immune
Immune system.
Reproductive
Reproductive system.
Musculoskeletal
Musculoskeletal system.
RootSystem
Plant root system.
ShootSystem
Plant shoot system.
VascularSystem
Vascular system.
Unknown
Unknown biological system kind.
Custom(String)
Caller-defined biological system kind text.
Trait Implementations§
Source§impl Clone for BiologicalSystemKind
impl Clone for BiologicalSystemKind
Source§fn clone(&self) -> BiologicalSystemKind
fn clone(&self) -> BiologicalSystemKind
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 BiologicalSystemKind
impl Debug for BiologicalSystemKind
Source§impl Display for BiologicalSystemKind
impl Display for BiologicalSystemKind
Source§impl FromStr for BiologicalSystemKind
impl FromStr for BiologicalSystemKind
Source§type Err = BiologicalSystemKindParseError
type Err = BiologicalSystemKindParseError
The associated error which can be returned from parsing.
Source§fn from_str(
value: &str,
) -> Result<BiologicalSystemKind, <BiologicalSystemKind as FromStr>::Err>
fn from_str( value: &str, ) -> Result<BiologicalSystemKind, <BiologicalSystemKind as FromStr>::Err>
Parses a string
s to return a value of this type. Read moreSource§impl Hash for BiologicalSystemKind
impl Hash for BiologicalSystemKind
Source§impl Ord for BiologicalSystemKind
impl Ord for BiologicalSystemKind
Source§fn cmp(&self, other: &BiologicalSystemKind) -> Ordering
fn cmp(&self, other: &BiologicalSystemKind) -> 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 BiologicalSystemKind
impl PartialEq for BiologicalSystemKind
Source§impl PartialOrd for BiologicalSystemKind
impl PartialOrd for BiologicalSystemKind
impl Eq for BiologicalSystemKind
impl StructuralPartialEq for BiologicalSystemKind
Auto Trait Implementations§
impl Freeze for BiologicalSystemKind
impl RefUnwindSafe for BiologicalSystemKind
impl Send for BiologicalSystemKind
impl Sync for BiologicalSystemKind
impl Unpin for BiologicalSystemKind
impl UnsafeUnpin for BiologicalSystemKind
impl UnwindSafe for BiologicalSystemKind
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