pub enum FrontMovement {
Advancing,
Retreating,
Stationary,
Weakening,
Strengthening,
Unknown,
Custom(String),
}Expand description
Stable weather-front movement vocabulary.
Variants§
Advancing
Advancing front.
Retreating
Retreating front.
Stationary
Stationary front.
Weakening
Weakening front.
Strengthening
Strengthening front.
Unknown
Unknown front movement.
Custom(String)
Caller-defined movement.
Trait Implementations§
Source§impl Clone for FrontMovement
impl Clone for FrontMovement
Source§fn clone(&self) -> FrontMovement
fn clone(&self) -> FrontMovement
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 FrontMovement
impl Debug for FrontMovement
Source§impl Display for FrontMovement
impl Display for FrontMovement
Source§impl FromStr for FrontMovement
impl FromStr for FrontMovement
Source§impl Hash for FrontMovement
impl Hash for FrontMovement
Source§impl Ord for FrontMovement
impl Ord for FrontMovement
Source§fn cmp(&self, other: &FrontMovement) -> Ordering
fn cmp(&self, other: &FrontMovement) -> Ordering
1.21.0 · 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 PartialEq for FrontMovement
impl PartialEq for FrontMovement
Source§impl PartialOrd for FrontMovement
impl PartialOrd for FrontMovement
impl Eq for FrontMovement
impl StructuralPartialEq for FrontMovement
Auto Trait Implementations§
impl Freeze for FrontMovement
impl RefUnwindSafe for FrontMovement
impl Send for FrontMovement
impl Sync for FrontMovement
impl Unpin for FrontMovement
impl UnsafeUnpin for FrontMovement
impl UnwindSafe for FrontMovement
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