#[non_exhaustive]pub struct RetentionProperties {
pub memory_store_retention_period_in_hours: i64,
pub magnetic_store_retention_period_in_days: i64,
}
Expand description
Retention properties contain the duration for which your time-series data must be stored in the magnetic store and the memory store.
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.memory_store_retention_period_in_hours: i64
The duration for which data must be stored in the memory store.
magnetic_store_retention_period_in_days: i64
The duration for which data must be stored in the magnetic store.
Implementations§
source§impl RetentionProperties
impl RetentionProperties
sourcepub fn memory_store_retention_period_in_hours(&self) -> i64
pub fn memory_store_retention_period_in_hours(&self) -> i64
The duration for which data must be stored in the memory store.
sourcepub fn magnetic_store_retention_period_in_days(&self) -> i64
pub fn magnetic_store_retention_period_in_days(&self) -> i64
The duration for which data must be stored in the magnetic store.
source§impl RetentionProperties
impl RetentionProperties
sourcepub fn builder() -> RetentionPropertiesBuilder
pub fn builder() -> RetentionPropertiesBuilder
Creates a new builder-style object to manufacture RetentionProperties
.
Trait Implementations§
source§impl Clone for RetentionProperties
impl Clone for RetentionProperties
source§fn clone(&self) -> RetentionProperties
fn clone(&self) -> RetentionProperties
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 RetentionProperties
impl Debug for RetentionProperties
source§impl PartialEq<RetentionProperties> for RetentionProperties
impl PartialEq<RetentionProperties> for RetentionProperties
source§fn eq(&self, other: &RetentionProperties) -> bool
fn eq(&self, other: &RetentionProperties) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for RetentionProperties
Auto Trait Implementations§
impl RefUnwindSafe for RetentionProperties
impl Send for RetentionProperties
impl Sync for RetentionProperties
impl Unpin for RetentionProperties
impl UnwindSafe for RetentionProperties
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