pub struct RootfsGetOutputRootfs {
pub avail: i64,
pub free: i64,
pub total: i64,
pub used: i64,
pub additional_properties: HashMap<String, Value>,
}Fields§
§avail: i64The available bytes in the root filesystem.
free: i64The free bytes on the root filesystem.
total: i64The total size of the root filesystem in bytes.
used: i64The used bytes in the root filesystem.
additional_properties: HashMap<String, Value>Implementations§
Trait Implementations§
Source§impl Clone for RootfsGetOutputRootfs
impl Clone for RootfsGetOutputRootfs
Source§fn clone(&self) -> RootfsGetOutputRootfs
fn clone(&self) -> RootfsGetOutputRootfs
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 RootfsGetOutputRootfs
impl Debug for RootfsGetOutputRootfs
Source§impl<'de> Deserialize<'de> for RootfsGetOutputRootfs
impl<'de> Deserialize<'de> for RootfsGetOutputRootfs
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 RootfsGetOutputRootfs
impl RefUnwindSafe for RootfsGetOutputRootfs
impl Send for RootfsGetOutputRootfs
impl Sync for RootfsGetOutputRootfs
impl Unpin for RootfsGetOutputRootfs
impl UnsafeUnpin for RootfsGetOutputRootfs
impl UnwindSafe for RootfsGetOutputRootfs
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