#[non_exhaustive]pub struct KxSavedownStorageConfiguration {
pub type: Option<KxSavedownStorageType>,
pub size: i32,
}Expand description
The size and type of temporary storage that is used to hold data during the savedown process. All the data written to this storage space is lost when the cluster node is restarted.
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.type: Option<KxSavedownStorageType>The type of writeable storage space for temporarily storing your savedown data. The valid values are:
-
SDS01 – This type represents 3000 IOPS and io2 ebs volume type.
size: i32The size of temporary storage in gibibytes.
Implementations§
source§impl KxSavedownStorageConfiguration
impl KxSavedownStorageConfiguration
sourcepub fn builder() -> KxSavedownStorageConfigurationBuilder
pub fn builder() -> KxSavedownStorageConfigurationBuilder
Creates a new builder-style object to manufacture KxSavedownStorageConfiguration.
Trait Implementations§
source§impl Clone for KxSavedownStorageConfiguration
impl Clone for KxSavedownStorageConfiguration
source§fn clone(&self) -> KxSavedownStorageConfiguration
fn clone(&self) -> KxSavedownStorageConfiguration
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 KxSavedownStorageConfiguration
impl PartialEq for KxSavedownStorageConfiguration
source§fn eq(&self, other: &KxSavedownStorageConfiguration) -> bool
fn eq(&self, other: &KxSavedownStorageConfiguration) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for KxSavedownStorageConfiguration
Auto Trait Implementations§
impl RefUnwindSafe for KxSavedownStorageConfiguration
impl Send for KxSavedownStorageConfiguration
impl Sync for KxSavedownStorageConfiguration
impl Unpin for KxSavedownStorageConfiguration
impl UnwindSafe for KxSavedownStorageConfiguration
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