pub enum TraitKind {
Morphological,
Physiological,
Behavioral,
Genetic,
Developmental,
Ecological,
Unknown,
Custom(String),
}Expand description
Broad biological trait families.
Variants§
Morphological
Shape, size, color, and other structural traits.
Physiological
Functional traits.
Behavioral
Behavior-associated traits.
Genetic
Genetic trait labels.
Developmental
Developmental traits.
Ecological
Ecological trait labels.
Unknown
Unknown trait kind.
Custom(String)
Caller-defined trait kind text.
Trait Implementations§
Source§impl Ord for TraitKind
impl Ord for TraitKind
1.21.0 (const: unstable) · 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 PartialOrd for TraitKind
impl PartialOrd for TraitKind
impl Eq for TraitKind
impl StructuralPartialEq for TraitKind
Auto Trait Implementations§
impl Freeze for TraitKind
impl RefUnwindSafe for TraitKind
impl Send for TraitKind
impl Sync for TraitKind
impl Unpin for TraitKind
impl UnsafeUnpin for TraitKind
impl UnwindSafe for TraitKind
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