#[non_exhaustive]pub struct TimeSeriesDataPointSummaryFormOutput {
pub form_name: String,
pub type_identifier: String,
pub type_revision: Option<String>,
pub timestamp: DateTime,
pub content_summary: Option<String>,
pub id: Option<String>,
}
Expand description
The summary of the time series data points form.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.form_name: String
The name of the time series data points summary form.
type_identifier: String
The type ID of the time series data points summary form.
type_revision: Option<String>
The type revision of the time series data points summary form.
timestamp: DateTime
The timestamp of the time series data points summary form.
content_summary: Option<String>
The content of the summary of the time series data points form.
id: Option<String>
The ID of the time series data points summary form.
Implementations§
source§impl TimeSeriesDataPointSummaryFormOutput
impl TimeSeriesDataPointSummaryFormOutput
sourcepub fn type_identifier(&self) -> &str
pub fn type_identifier(&self) -> &str
The type ID of the time series data points summary form.
sourcepub fn type_revision(&self) -> Option<&str>
pub fn type_revision(&self) -> Option<&str>
The type revision of the time series data points summary form.
sourcepub fn timestamp(&self) -> &DateTime
pub fn timestamp(&self) -> &DateTime
The timestamp of the time series data points summary form.
sourcepub fn content_summary(&self) -> Option<&str>
pub fn content_summary(&self) -> Option<&str>
The content of the summary of the time series data points form.
source§impl TimeSeriesDataPointSummaryFormOutput
impl TimeSeriesDataPointSummaryFormOutput
sourcepub fn builder() -> TimeSeriesDataPointSummaryFormOutputBuilder
pub fn builder() -> TimeSeriesDataPointSummaryFormOutputBuilder
Creates a new builder-style object to manufacture TimeSeriesDataPointSummaryFormOutput
.
Trait Implementations§
source§impl Clone for TimeSeriesDataPointSummaryFormOutput
impl Clone for TimeSeriesDataPointSummaryFormOutput
source§fn clone(&self) -> TimeSeriesDataPointSummaryFormOutput
fn clone(&self) -> TimeSeriesDataPointSummaryFormOutput
Returns a copy 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 moresource§impl PartialEq for TimeSeriesDataPointSummaryFormOutput
impl PartialEq for TimeSeriesDataPointSummaryFormOutput
source§fn eq(&self, other: &TimeSeriesDataPointSummaryFormOutput) -> bool
fn eq(&self, other: &TimeSeriesDataPointSummaryFormOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for TimeSeriesDataPointSummaryFormOutput
Auto Trait Implementations§
impl Freeze for TimeSeriesDataPointSummaryFormOutput
impl RefUnwindSafe for TimeSeriesDataPointSummaryFormOutput
impl Send for TimeSeriesDataPointSummaryFormOutput
impl Sync for TimeSeriesDataPointSummaryFormOutput
impl Unpin for TimeSeriesDataPointSummaryFormOutput
impl UnwindSafe for TimeSeriesDataPointSummaryFormOutput
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> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.