#[non_exhaustive]pub struct FileCacheLustreMetadataConfiguration {
pub storage_capacity: Option<i32>,
}Expand description
The configuration for a Lustre MDT (Metadata Target) storage volume. The metadata on Amazon File Cache is managed by a Lustre Metadata Server (MDS) while the actual metadata is persisted on an MDT.
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.storage_capacity: Option<i32>The storage capacity of the Lustre MDT (Metadata Target) storage volume in gibibytes (GiB). The only supported value is 2400 GiB.
Implementations§
source§impl FileCacheLustreMetadataConfiguration
impl FileCacheLustreMetadataConfiguration
sourcepub fn storage_capacity(&self) -> Option<i32>
pub fn storage_capacity(&self) -> Option<i32>
The storage capacity of the Lustre MDT (Metadata Target) storage volume in gibibytes (GiB). The only supported value is 2400 GiB.
source§impl FileCacheLustreMetadataConfiguration
impl FileCacheLustreMetadataConfiguration
sourcepub fn builder() -> FileCacheLustreMetadataConfigurationBuilder
pub fn builder() -> FileCacheLustreMetadataConfigurationBuilder
Creates a new builder-style object to manufacture FileCacheLustreMetadataConfiguration.
Trait Implementations§
source§impl Clone for FileCacheLustreMetadataConfiguration
impl Clone for FileCacheLustreMetadataConfiguration
source§fn clone(&self) -> FileCacheLustreMetadataConfiguration
fn clone(&self) -> FileCacheLustreMetadataConfiguration
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<FileCacheLustreMetadataConfiguration> for FileCacheLustreMetadataConfiguration
impl PartialEq<FileCacheLustreMetadataConfiguration> for FileCacheLustreMetadataConfiguration
source§fn eq(&self, other: &FileCacheLustreMetadataConfiguration) -> bool
fn eq(&self, other: &FileCacheLustreMetadataConfiguration) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for FileCacheLustreMetadataConfiguration
Auto Trait Implementations§
impl RefUnwindSafe for FileCacheLustreMetadataConfiguration
impl Send for FileCacheLustreMetadataConfiguration
impl Sync for FileCacheLustreMetadataConfiguration
impl Unpin for FileCacheLustreMetadataConfiguration
impl UnwindSafe for FileCacheLustreMetadataConfiguration
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