Enum FeedingRelation
pub enum FeedingRelation {
Consumes,
PreysOn,
Grazes,
Parasitizes,
Scavenges,
Decomposes,
Unknown,
Custom(String),
}Variants§
Trait Implementations§
§impl Clone for FeedingRelation
impl Clone for FeedingRelation
§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 more§impl Debug for FeedingRelation
impl Debug for FeedingRelation
§impl Display for FeedingRelation
impl Display for FeedingRelation
§impl FromStr for FeedingRelation
impl FromStr for FeedingRelation
§type Err = FeedingRelationParseError
type Err = FeedingRelationParseError
The associated error which can be returned from parsing.
§fn from_str(
value: &str,
) -> Result<FeedingRelation, <FeedingRelation as FromStr>::Err>
fn from_str( value: &str, ) -> Result<FeedingRelation, <FeedingRelation as FromStr>::Err>
Parses a string
s to return a value of this type. Read more§impl Hash for FeedingRelation
impl Hash for FeedingRelation
§impl Ord for FeedingRelation
impl Ord for FeedingRelation
§impl PartialEq for FeedingRelation
impl PartialEq for FeedingRelation
§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