#[non_exhaustive]pub struct DataSetRefreshProperties {
pub refresh_configuration: Option<RefreshConfiguration>,
}Expand description
The refresh properties of a dataset.
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.refresh_configuration: Option<RefreshConfiguration>The refresh configuration for a dataset.
Implementations§
source§impl DataSetRefreshProperties
impl DataSetRefreshProperties
sourcepub fn refresh_configuration(&self) -> Option<&RefreshConfiguration>
pub fn refresh_configuration(&self) -> Option<&RefreshConfiguration>
The refresh configuration for a dataset.
source§impl DataSetRefreshProperties
impl DataSetRefreshProperties
sourcepub fn builder() -> DataSetRefreshPropertiesBuilder
pub fn builder() -> DataSetRefreshPropertiesBuilder
Creates a new builder-style object to manufacture DataSetRefreshProperties.
Trait Implementations§
source§impl Clone for DataSetRefreshProperties
impl Clone for DataSetRefreshProperties
source§fn clone(&self) -> DataSetRefreshProperties
fn clone(&self) -> DataSetRefreshProperties
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 DataSetRefreshProperties
impl Debug for DataSetRefreshProperties
source§impl PartialEq<DataSetRefreshProperties> for DataSetRefreshProperties
impl PartialEq<DataSetRefreshProperties> for DataSetRefreshProperties
source§fn eq(&self, other: &DataSetRefreshProperties) -> bool
fn eq(&self, other: &DataSetRefreshProperties) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DataSetRefreshProperties
Auto Trait Implementations§
impl RefUnwindSafe for DataSetRefreshProperties
impl Send for DataSetRefreshProperties
impl Sync for DataSetRefreshProperties
impl Unpin for DataSetRefreshProperties
impl UnwindSafe for DataSetRefreshProperties
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