pub enum WindKind {
Calm,
Breeze,
Gale,
Storm,
Squall,
Gust,
Unknown,
Custom(String),
}Expand description
Stable wind kind vocabulary.
Variants§
Calm
Calm conditions.
Breeze
Breeze conditions.
Gale
Gale conditions.
Storm
Storm conditions.
Squall
Squall conditions.
Gust
Gust conditions.
Unknown
Unknown wind kind.
Custom(String)
Caller-defined wind kind.
Trait Implementations§
Source§impl Ord for WindKind
impl Ord for WindKind
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialOrd for WindKind
impl PartialOrd for WindKind
impl Eq for WindKind
impl StructuralPartialEq for WindKind
Auto Trait Implementations§
impl Freeze for WindKind
impl RefUnwindSafe for WindKind
impl Send for WindKind
impl Sync for WindKind
impl Unpin for WindKind
impl UnsafeUnpin for WindKind
impl UnwindSafe for WindKind
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