#[non_exhaustive]pub struct PersistentStorageConfiguration { /* private fields */ }
Expand description
Information about the configuration of persistent storage for a Dev Environment.
Implementations§
source§impl PersistentStorageConfiguration
impl PersistentStorageConfiguration
sourcepub fn size_in_gi_b(&self) -> Option<i32>
pub fn size_in_gi_b(&self) -> Option<i32>
The size of the persistent storage in gigabytes (specifically GiB).
Valid values for storage are based on memory sizes in 16GB increments. Valid values are 16, 32, and 64.
source§impl PersistentStorageConfiguration
impl PersistentStorageConfiguration
sourcepub fn builder() -> PersistentStorageConfigurationBuilder
pub fn builder() -> PersistentStorageConfigurationBuilder
Creates a new builder-style object to manufacture PersistentStorageConfiguration
.
Trait Implementations§
source§impl Clone for PersistentStorageConfiguration
impl Clone for PersistentStorageConfiguration
source§fn clone(&self) -> PersistentStorageConfiguration
fn clone(&self) -> PersistentStorageConfiguration
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<PersistentStorageConfiguration> for PersistentStorageConfiguration
impl PartialEq<PersistentStorageConfiguration> for PersistentStorageConfiguration
source§fn eq(&self, other: &PersistentStorageConfiguration) -> bool
fn eq(&self, other: &PersistentStorageConfiguration) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.