pub enum Grib2WaveGFSProduct {
Arctic9km,
Atlocn0p16,
Epacif0p16,
Global0p16,
Global0p25,
Gsouth0p25,
Wcoast0p16,
Other(String),
}Expand description
GFS WAVE products available for download
arctic.9km- Arctic, 9km resolution Study Variables hereatlocn.0p16- Atlantic, 0.16 degree resolution Study Variables hereepacif.0p16- Eastern Pacific, 0.16 degree resolution Study Variables hereglobal.0p16- Global, 0.16 degree resolution Study Variables hereglobal.0p25- Global, 0.25 degree resolution Study Variables heregsouth.0p25- Gulf of South America, 0.25 degree resolution Study Variables herewcoast.0p16- West Coast, 0.16 degree resolution Study Variables here
Variants§
Arctic9km
arctic.9km- Arctic, 9km resolution Study Variables here
Atlocn0p16
atlocn.0p16- Atlantic, 0.16 degree resolution Study Variables here
Epacif0p16
epacif.0p16- Eastern Pacific, 0.16 degree resolution Study Variables here
Global0p16
global.0p16- Global, 0.16 degree resolution Study Variables here
Global0p25
global.0p25- Global, 0.25 degree resolution Study Variables here
Gsouth0p25
gsouth.0p25- Gulf of South America, 0.25 degree resolution Study Variables here
Wcoast0p16
wcoast.0p16- West Coast, 0.16 degree resolution Study Variables here
Other(String)
User defined product
Trait Implementations§
Source§impl Clone for Grib2WaveGFSProduct
impl Clone for Grib2WaveGFSProduct
Source§fn clone(&self) -> Grib2WaveGFSProduct
fn clone(&self) -> Grib2WaveGFSProduct
Returns a duplicate of the value. Read more
1.0.0§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for Grib2WaveGFSProduct
impl Debug for Grib2WaveGFSProduct
Source§impl From<&str> for Grib2WaveGFSProduct
impl From<&str> for Grib2WaveGFSProduct
Source§impl From<Grib2WaveGFSProduct> for String
impl From<Grib2WaveGFSProduct> for String
Source§fn from(value: Grib2WaveGFSProduct) -> Self
fn from(value: Grib2WaveGFSProduct) -> Self
Converts to this type from the input type.
Source§impl PartialEq for Grib2WaveGFSProduct
impl PartialEq for Grib2WaveGFSProduct
impl Eq for Grib2WaveGFSProduct
impl StructuralPartialEq for Grib2WaveGFSProduct
Auto Trait Implementations§
impl Freeze for Grib2WaveGFSProduct
impl RefUnwindSafe for Grib2WaveGFSProduct
impl Send for Grib2WaveGFSProduct
impl Sync for Grib2WaveGFSProduct
impl Unpin for Grib2WaveGFSProduct
impl UnwindSafe for Grib2WaveGFSProduct
Blanket Implementations§
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§unsafe fn clone_to_uninit(&self, dest: *mut u8)
unsafe fn clone_to_uninit(&self, dest: *mut u8)
🔬This is a nightly-only experimental API. (
clone_to_uninit)Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more