pub enum PressureSystemKindParseError {
Empty,
}Expand description
Error returned when parsing pressure-system kinds fails.
Variants§
Empty
The pressure system kind was empty after trimming whitespace.
Trait Implementations§
Source§impl Clone for PressureSystemKindParseError
impl Clone for PressureSystemKindParseError
Source§fn clone(&self) -> PressureSystemKindParseError
fn clone(&self) -> PressureSystemKindParseError
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 PressureSystemKindParseError
impl Debug for PressureSystemKindParseError
Source§impl Error for PressureSystemKindParseError
impl Error for PressureSystemKindParseError
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 PressureSystemKindParseError
impl PartialEq for PressureSystemKindParseError
Source§fn eq(&self, other: &PressureSystemKindParseError) -> bool
fn eq(&self, other: &PressureSystemKindParseError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for PressureSystemKindParseError
impl Eq for PressureSystemKindParseError
impl StructuralPartialEq for PressureSystemKindParseError
Auto Trait Implementations§
impl Freeze for PressureSystemKindParseError
impl RefUnwindSafe for PressureSystemKindParseError
impl Send for PressureSystemKindParseError
impl Sync for PressureSystemKindParseError
impl Unpin for PressureSystemKindParseError
impl UnsafeUnpin for PressureSystemKindParseError
impl UnwindSafe for PressureSystemKindParseError
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