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