pub enum Grib2Template5 {
Grib2Template50(Grib2Template50),
Grib2Template52(Grib2Template52),
Grib2Template53(Grib2Template53),
Grib2Template540(Grib2Template540),
Grib2Template550(Grib2Template550),
Grib2Template551(Grib2Template551),
}Expand description
Returns a template generator for the given template number
Variants§
Grib2Template50(Grib2Template50)
Data Representation Template 5.0 - Grid point data - simple packing
Grib2Template52(Grib2Template52)
Data Representation Template 5.2 – Complex packing (no spatial differencing).
Grib2Template53(Grib2Template53)
Data Representation Template 5.3 – Complex packing and spatial differencing.
Grib2Template540(Grib2Template540)
Data Representation Template 5.40
Grib2Template550(Grib2Template550)
Data Representation Template 5.50 - Spectral data - simple packing
Grib2Template551(Grib2Template551)
Data Representation Template 5.51 - Spectral data - complex packing
Implementations§
Trait Implementations§
Source§impl Clone for Grib2Template5
impl Clone for Grib2Template5
Source§fn clone(&self) -> Grib2Template5
fn clone(&self) -> Grib2Template5
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 Grib2Template5
impl Debug for Grib2Template5
Source§impl PartialEq for Grib2Template5
impl PartialEq for Grib2Template5
impl StructuralPartialEq for Grib2Template5
Auto Trait Implementations§
impl Freeze for Grib2Template5
impl RefUnwindSafe for Grib2Template5
impl Send for Grib2Template5
impl Sync for Grib2Template5
impl Unpin for Grib2Template5
impl UnwindSafe for Grib2Template5
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<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