pub enum BiologicalSystemKindParseError {
Empty,
}Expand description
Error returned when parsing biological system kinds fails.
Variants§
Empty
The biological system kind was empty after trimming whitespace.
Trait Implementations§
Source§impl Clone for BiologicalSystemKindParseError
impl Clone for BiologicalSystemKindParseError
Source§fn clone(&self) -> BiologicalSystemKindParseError
fn clone(&self) -> BiologicalSystemKindParseError
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 Error for BiologicalSystemKindParseError
impl Error for BiologicalSystemKindParseError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl PartialEq for BiologicalSystemKindParseError
impl PartialEq for BiologicalSystemKindParseError
Source§fn eq(&self, other: &BiologicalSystemKindParseError) -> bool
fn eq(&self, other: &BiologicalSystemKindParseError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for BiologicalSystemKindParseError
impl Eq for BiologicalSystemKindParseError
impl StructuralPartialEq for BiologicalSystemKindParseError
Auto Trait Implementations§
impl Freeze for BiologicalSystemKindParseError
impl RefUnwindSafe for BiologicalSystemKindParseError
impl Send for BiologicalSystemKindParseError
impl Sync for BiologicalSystemKindParseError
impl Unpin for BiologicalSystemKindParseError
impl UnsafeUnpin for BiologicalSystemKindParseError
impl UnwindSafe for BiologicalSystemKindParseError
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