pub struct ServerStorageDevice {
pub address: String,
pub part_of_plan: String,
pub labels: Vec<Label>,
pub storage: String,
pub storage_size: i32,
pub storage_encrypted: String,
pub storage_tier: String,
pub storage_title: String,
pub storage_type: Option<String>,
pub boot_disk: String,
}Fields§
§address: String§part_of_plan: String§labels: Vec<Label>§storage: String§storage_size: i32§storage_encrypted: String§storage_tier: String§storage_title: String§storage_type: Option<String>§boot_disk: StringTrait Implementations§
Source§impl Clone for ServerStorageDevice
impl Clone for ServerStorageDevice
Source§fn clone(&self) -> ServerStorageDevice
fn clone(&self) -> ServerStorageDevice
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 ServerStorageDevice
impl Debug for ServerStorageDevice
Source§impl<'de> Deserialize<'de> for ServerStorageDevice
impl<'de> Deserialize<'de> for ServerStorageDevice
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ServerStorageDevice
impl RefUnwindSafe for ServerStorageDevice
impl Send for ServerStorageDevice
impl Sync for ServerStorageDevice
impl Unpin for ServerStorageDevice
impl UnwindSafe for ServerStorageDevice
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