pub struct StatisticalProcessTemplate {
pub base: AnalysisOrForecastTemplate,
pub end_of_overall_time_interval: ReferenceTime,
pub number_of_missing_in_statistical_process: u32,
pub time_ranges: Vec<StatisticalTimeRange>,
}Expand description
Product Definition Template 4.8: statistically processed field over a time interval.
Fields§
§base: AnalysisOrForecastTemplate§end_of_overall_time_interval: ReferenceTime§number_of_missing_in_statistical_process: u32§time_ranges: Vec<StatisticalTimeRange>Trait Implementations§
Source§impl Clone for StatisticalProcessTemplate
impl Clone for StatisticalProcessTemplate
Source§fn clone(&self) -> StatisticalProcessTemplate
fn clone(&self) -> StatisticalProcessTemplate
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 StatisticalProcessTemplate
impl Debug for StatisticalProcessTemplate
Source§impl PartialEq for StatisticalProcessTemplate
impl PartialEq for StatisticalProcessTemplate
Source§fn eq(&self, other: &StatisticalProcessTemplate) -> bool
fn eq(&self, other: &StatisticalProcessTemplate) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for StatisticalProcessTemplate
Auto Trait Implementations§
impl Freeze for StatisticalProcessTemplate
impl RefUnwindSafe for StatisticalProcessTemplate
impl Send for StatisticalProcessTemplate
impl Sync for StatisticalProcessTemplate
impl Unpin for StatisticalProcessTemplate
impl UnsafeUnpin for StatisticalProcessTemplate
impl UnwindSafe for StatisticalProcessTemplate
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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