#[non_exhaustive]pub struct DedicatedLocalSsdProfile {
pub disk_count: i64,
/* private fields */
}Expand description
Provisions a new, separate local NVMe SSD exclusively for swap.
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.disk_count: i64The number of physical local NVMe SSD disks to attach.
Implementations§
Source§impl DedicatedLocalSsdProfile
impl DedicatedLocalSsdProfile
Sourcepub fn set_disk_count<T: Into<i64>>(self, v: T) -> Self
pub fn set_disk_count<T: Into<i64>>(self, v: T) -> Self
Trait Implementations§
Source§impl Clone for DedicatedLocalSsdProfile
impl Clone for DedicatedLocalSsdProfile
Source§fn clone(&self) -> DedicatedLocalSsdProfile
fn clone(&self) -> DedicatedLocalSsdProfile
Returns a duplicate 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 DedicatedLocalSsdProfile
impl Debug for DedicatedLocalSsdProfile
Source§impl Default for DedicatedLocalSsdProfile
impl Default for DedicatedLocalSsdProfile
Source§fn default() -> DedicatedLocalSsdProfile
fn default() -> DedicatedLocalSsdProfile
Returns the “default value” for a type. Read more
Source§impl Message for DedicatedLocalSsdProfile
impl Message for DedicatedLocalSsdProfile
Source§impl PartialEq for DedicatedLocalSsdProfile
impl PartialEq for DedicatedLocalSsdProfile
impl StructuralPartialEq for DedicatedLocalSsdProfile
Auto Trait Implementations§
impl Freeze for DedicatedLocalSsdProfile
impl RefUnwindSafe for DedicatedLocalSsdProfile
impl Send for DedicatedLocalSsdProfile
impl Sync for DedicatedLocalSsdProfile
impl Unpin for DedicatedLocalSsdProfile
impl UnsafeUnpin for DedicatedLocalSsdProfile
impl UnwindSafe for DedicatedLocalSsdProfile
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