pub struct Grib2LatLonGrid {
pub ni: usize,
pub nj: usize,
pub lat1_deg: f64,
pub lon1_deg: f64,
pub di_deg: f64,
pub dj_deg: f64,
pub scan_mode: u8,
}Expand description
GRIB2 regular lat/lon grid metadata (template 3.0)
Fields§
§ni: usize§nj: usize§lat1_deg: f64§lon1_deg: f64§di_deg: f64§dj_deg: f64§scan_mode: u8Trait Implementations§
Source§impl Clone for Grib2LatLonGrid
impl Clone for Grib2LatLonGrid
Source§fn clone(&self) -> Grib2LatLonGrid
fn clone(&self) -> Grib2LatLonGrid
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 moreAuto Trait Implementations§
impl Freeze for Grib2LatLonGrid
impl RefUnwindSafe for Grib2LatLonGrid
impl Send for Grib2LatLonGrid
impl Sync for Grib2LatLonGrid
impl Unpin for Grib2LatLonGrid
impl UnwindSafe for Grib2LatLonGrid
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