pub struct Grib1LatLonGrid {
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
GRIB1 regular lat/lon grid metadata (similar layout to GRIB2 helper)
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 Grib1LatLonGrid
impl Clone for Grib1LatLonGrid
Source§fn clone(&self) -> Grib1LatLonGrid
fn clone(&self) -> Grib1LatLonGrid
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 Grib1LatLonGrid
impl RefUnwindSafe for Grib1LatLonGrid
impl Send for Grib1LatLonGrid
impl Sync for Grib1LatLonGrid
impl Unpin for Grib1LatLonGrid
impl UnwindSafe for Grib1LatLonGrid
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