#[non_exhaustive]pub struct RollingDateConfiguration {
pub data_set_identifier: Option<String>,
pub expression: String,
}Expand description
The rolling date configuration of a date time filter.
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.data_set_identifier: Option<String>The data set that is used in the rolling date configuration.
expression: StringThe expression of the rolling date configuration.
Implementations§
source§impl RollingDateConfiguration
impl RollingDateConfiguration
sourcepub fn data_set_identifier(&self) -> Option<&str>
pub fn data_set_identifier(&self) -> Option<&str>
The data set that is used in the rolling date configuration.
sourcepub fn expression(&self) -> &str
pub fn expression(&self) -> &str
The expression of the rolling date configuration.
source§impl RollingDateConfiguration
impl RollingDateConfiguration
sourcepub fn builder() -> RollingDateConfigurationBuilder
pub fn builder() -> RollingDateConfigurationBuilder
Creates a new builder-style object to manufacture RollingDateConfiguration.
Trait Implementations§
source§impl Clone for RollingDateConfiguration
impl Clone for RollingDateConfiguration
source§fn clone(&self) -> RollingDateConfiguration
fn clone(&self) -> RollingDateConfiguration
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 Debug for RollingDateConfiguration
impl Debug for RollingDateConfiguration
source§impl PartialEq for RollingDateConfiguration
impl PartialEq for RollingDateConfiguration
source§fn eq(&self, other: &RollingDateConfiguration) -> bool
fn eq(&self, other: &RollingDateConfiguration) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for RollingDateConfiguration
Auto Trait Implementations§
impl Freeze for RollingDateConfiguration
impl RefUnwindSafe for RollingDateConfiguration
impl Send for RollingDateConfiguration
impl Sync for RollingDateConfiguration
impl Unpin for RollingDateConfiguration
impl UnwindSafe for RollingDateConfiguration
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.