pub struct ContainerSize {
pub root_fs_size: Option<i64>,
pub rw_size: Option<i64>,
}
Available on crate feature
v5
only.Expand description
ContainerSize holds the size of the container’s root filesystem and top read-write layer.
Fields§
§root_fs_size: Option<i64>
§rw_size: Option<i64>
Trait Implementations§
Source§impl Debug for ContainerSize
impl Debug for ContainerSize
Source§impl Default for ContainerSize
impl Default for ContainerSize
Source§fn default() -> ContainerSize
fn default() -> ContainerSize
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ContainerSize
impl<'de> Deserialize<'de> for ContainerSize
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 ContainerSize
impl RefUnwindSafe for ContainerSize
impl Send for ContainerSize
impl Sync for ContainerSize
impl Unpin for ContainerSize
impl UnwindSafe for ContainerSize
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