pub enum WindKindParseError {
Empty,
}Expand description
Error returned when parsing wind kinds fails.
Variants§
Empty
The wind kind was empty after trimming whitespace.
Trait Implementations§
Source§impl Clone for WindKindParseError
impl Clone for WindKindParseError
Source§fn clone(&self) -> WindKindParseError
fn clone(&self) -> WindKindParseError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 WindKindParseError
impl Debug for WindKindParseError
Source§impl Display for WindKindParseError
impl Display for WindKindParseError
Source§impl Error for WindKindParseError
impl Error for WindKindParseError
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 WindKindParseError
impl PartialEq for WindKindParseError
Source§fn eq(&self, other: &WindKindParseError) -> bool
fn eq(&self, other: &WindKindParseError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for WindKindParseError
impl Eq for WindKindParseError
impl StructuralPartialEq for WindKindParseError
Auto Trait Implementations§
impl Freeze for WindKindParseError
impl RefUnwindSafe for WindKindParseError
impl Send for WindKindParseError
impl Sync for WindKindParseError
impl Unpin for WindKindParseError
impl UnsafeUnpin for WindKindParseError
impl UnwindSafe for WindKindParseError
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