pub enum CellOrganelleParseError {
Empty,
}Expand description
Error returned when parsing a cell organelle fails.
Variants§
Empty
The organelle text was empty after trimming whitespace.
Trait Implementations§
Source§impl Clone for CellOrganelleParseError
impl Clone for CellOrganelleParseError
Source§fn clone(&self) -> CellOrganelleParseError
fn clone(&self) -> CellOrganelleParseError
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 CellOrganelleParseError
impl Debug for CellOrganelleParseError
Source§impl Display for CellOrganelleParseError
impl Display for CellOrganelleParseError
Source§impl Error for CellOrganelleParseError
impl Error for CellOrganelleParseError
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 CellOrganelleParseError
impl PartialEq for CellOrganelleParseError
impl Copy for CellOrganelleParseError
impl Eq for CellOrganelleParseError
impl StructuralPartialEq for CellOrganelleParseError
Auto Trait Implementations§
impl Freeze for CellOrganelleParseError
impl RefUnwindSafe for CellOrganelleParseError
impl Send for CellOrganelleParseError
impl Sync for CellOrganelleParseError
impl Unpin for CellOrganelleParseError
impl UnsafeUnpin for CellOrganelleParseError
impl UnwindSafe for CellOrganelleParseError
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