pub enum StormFrontDistance {
OutOfRange,
Range_km(u8),
Overhead,
}Expand description
Storm Front Distance
Variants§
OutOfRange
storm front is out of range
Range_km(u8)
storm front is in 5-40 km range
Overhead
storm front is overhead
Trait Implementations§
Source§impl Clone for StormFrontDistance
impl Clone for StormFrontDistance
Source§fn clone(&self) -> StormFrontDistance
fn clone(&self) -> StormFrontDistance
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 StormFrontDistance
impl Debug for StormFrontDistance
Source§impl PartialEq for StormFrontDistance
impl PartialEq for StormFrontDistance
impl Copy for StormFrontDistance
impl Eq for StormFrontDistance
impl StructuralPartialEq for StormFrontDistance
Auto Trait Implementations§
impl Freeze for StormFrontDistance
impl RefUnwindSafe for StormFrontDistance
impl Send for StormFrontDistance
impl Sync for StormFrontDistance
impl Unpin for StormFrontDistance
impl UnsafeUnpin for StormFrontDistance
impl UnwindSafe for StormFrontDistance
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