Struct aws_sdk_quicksight::types::DateTimeDefaultValues
source · #[non_exhaustive]pub struct DateTimeDefaultValues {
pub dynamic_value: Option<DynamicDefaultValue>,
pub static_values: Option<Vec<DateTime>>,
pub rolling_date: Option<RollingDateConfiguration>,
}Expand description
The default values of the DateTimeParameterDeclaration.
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.dynamic_value: Option<DynamicDefaultValue>The dynamic value of the DataTimeDefaultValues. Different defaults are displayed according to users, groups, and values mapping.
static_values: Option<Vec<DateTime>>The static values of the DataTimeDefaultValues.
rolling_date: Option<RollingDateConfiguration>The rolling date of the DataTimeDefaultValues. The date is determined from the dataset based on input expression.
Implementations§
source§impl DateTimeDefaultValues
impl DateTimeDefaultValues
sourcepub fn dynamic_value(&self) -> Option<&DynamicDefaultValue>
pub fn dynamic_value(&self) -> Option<&DynamicDefaultValue>
The dynamic value of the DataTimeDefaultValues. Different defaults are displayed according to users, groups, and values mapping.
sourcepub fn static_values(&self) -> Option<&[DateTime]>
pub fn static_values(&self) -> Option<&[DateTime]>
The static values of the DataTimeDefaultValues.
sourcepub fn rolling_date(&self) -> Option<&RollingDateConfiguration>
pub fn rolling_date(&self) -> Option<&RollingDateConfiguration>
The rolling date of the DataTimeDefaultValues. The date is determined from the dataset based on input expression.
source§impl DateTimeDefaultValues
impl DateTimeDefaultValues
sourcepub fn builder() -> DateTimeDefaultValuesBuilder
pub fn builder() -> DateTimeDefaultValuesBuilder
Creates a new builder-style object to manufacture DateTimeDefaultValues.
Trait Implementations§
source§impl Clone for DateTimeDefaultValues
impl Clone for DateTimeDefaultValues
source§fn clone(&self) -> DateTimeDefaultValues
fn clone(&self) -> DateTimeDefaultValues
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 DateTimeDefaultValues
impl Debug for DateTimeDefaultValues
source§impl PartialEq<DateTimeDefaultValues> for DateTimeDefaultValues
impl PartialEq<DateTimeDefaultValues> for DateTimeDefaultValues
source§fn eq(&self, other: &DateTimeDefaultValues) -> bool
fn eq(&self, other: &DateTimeDefaultValues) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DateTimeDefaultValues
Auto Trait Implementations§
impl RefUnwindSafe for DateTimeDefaultValues
impl Send for DateTimeDefaultValues
impl Sync for DateTimeDefaultValues
impl Unpin for DateTimeDefaultValues
impl UnwindSafe for DateTimeDefaultValues
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