pub struct BackgroundWorkerDetailsDisk {
pub id: Option<BackgroundWorkerDetailsDiskId>,
pub mount_path: Option<String>,
pub name: Option<String>,
pub size_gb: Option<i64>,
}Expand description
BackgroundWorkerDetailsDisk
JSON schema
{
"type": "object",
"properties": {
"id": {
"examples": [
"dsk-cph1rs3idesc73a2b2mg"
],
"type": "string",
"pattern": "^dsk-[0-9a-z]{20}$"
},
"mountPath": {
"type": "string"
},
"name": {
"type": "string"
},
"sizeGB": {
"type": "integer"
}
}
}Fields§
§id: Option<BackgroundWorkerDetailsDiskId>§mount_path: Option<String>§name: Option<String>§size_gb: Option<i64>Trait Implementations§
Source§impl Clone for BackgroundWorkerDetailsDisk
impl Clone for BackgroundWorkerDetailsDisk
Source§fn clone(&self) -> BackgroundWorkerDetailsDisk
fn clone(&self) -> BackgroundWorkerDetailsDisk
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 BackgroundWorkerDetailsDisk
impl Debug for BackgroundWorkerDetailsDisk
Source§impl<'de> Deserialize<'de> for BackgroundWorkerDetailsDisk
impl<'de> Deserialize<'de> for BackgroundWorkerDetailsDisk
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 BackgroundWorkerDetailsDisk
impl RefUnwindSafe for BackgroundWorkerDetailsDisk
impl Send for BackgroundWorkerDetailsDisk
impl Sync for BackgroundWorkerDetailsDisk
impl Unpin for BackgroundWorkerDetailsDisk
impl UnsafeUnpin for BackgroundWorkerDetailsDisk
impl UnwindSafe for BackgroundWorkerDetailsDisk
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