pub struct StatisticalTimeRange {
pub type_of_statistical_processing: u8,
pub type_of_time_increment: u8,
pub time_range_unit: u8,
pub time_range_length: u32,
pub time_increment_unit: u8,
pub time_increment: u32,
}Expand description
Statistical processing descriptor from GRIB2 Product Definition templates with one or more time range specifications.
Fields§
§type_of_statistical_processing: u8§type_of_time_increment: u8§time_range_unit: u8§time_range_length: u32§time_increment_unit: u8§time_increment: u32Trait Implementations§
Source§impl Clone for StatisticalTimeRange
impl Clone for StatisticalTimeRange
Source§fn clone(&self) -> StatisticalTimeRange
fn clone(&self) -> StatisticalTimeRange
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 StatisticalTimeRange
impl Debug for StatisticalTimeRange
impl Eq for StatisticalTimeRange
Source§impl PartialEq for StatisticalTimeRange
impl PartialEq for StatisticalTimeRange
Source§fn eq(&self, other: &StatisticalTimeRange) -> bool
fn eq(&self, other: &StatisticalTimeRange) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for StatisticalTimeRange
Auto Trait Implementations§
impl Freeze for StatisticalTimeRange
impl RefUnwindSafe for StatisticalTimeRange
impl Send for StatisticalTimeRange
impl Sync for StatisticalTimeRange
impl Unpin for StatisticalTimeRange
impl UnsafeUnpin for StatisticalTimeRange
impl UnwindSafe for StatisticalTimeRange
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