pub enum FeedingRelation {
Consumes,
PreysOn,
Grazes,
Parasitizes,
Scavenges,
Decomposes,
Unknown,
Custom(String),
}Variants§
Trait Implementations§
Source§impl Clone for FeedingRelation
impl Clone for FeedingRelation
Source§fn clone(&self) -> FeedingRelation
fn clone(&self) -> FeedingRelation
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 FeedingRelation
impl Debug for FeedingRelation
Source§impl Display for FeedingRelation
impl Display for FeedingRelation
Source§impl FromStr for FeedingRelation
impl FromStr for FeedingRelation
Source§impl Hash for FeedingRelation
impl Hash for FeedingRelation
Source§impl Ord for FeedingRelation
impl Ord for FeedingRelation
Source§fn cmp(&self, other: &FeedingRelation) -> Ordering
fn cmp(&self, other: &FeedingRelation) -> 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 FeedingRelation
impl PartialEq for FeedingRelation
Source§impl PartialOrd for FeedingRelation
impl PartialOrd for FeedingRelation
impl Eq for FeedingRelation
impl StructuralPartialEq for FeedingRelation
Auto Trait Implementations§
impl Freeze for FeedingRelation
impl RefUnwindSafe for FeedingRelation
impl Send for FeedingRelation
impl Sync for FeedingRelation
impl Unpin for FeedingRelation
impl UnsafeUnpin for FeedingRelation
impl UnwindSafe for FeedingRelation
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