pub struct ContainerStorageStats {
pub read_count_normalized: Option<u64>,
pub read_size_bytes: Option<u64>,
pub write_count_normalized: Option<u64>,
pub write_size_bytes: Option<u64>,
}Expand description
StorageStats is the disk I/O stats for read/write on Windows. This type is Windows-specific and omitted for Linux containers.
Fields§
§read_count_normalized: Option<u64>§read_size_bytes: Option<u64>§write_count_normalized: Option<u64>§write_size_bytes: Option<u64>Trait Implementations§
Source§impl Clone for ContainerStorageStats
impl Clone for ContainerStorageStats
Source§fn clone(&self) -> ContainerStorageStats
fn clone(&self) -> ContainerStorageStats
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 ContainerStorageStats
impl Debug for ContainerStorageStats
Source§impl Default for ContainerStorageStats
impl Default for ContainerStorageStats
Source§fn default() -> ContainerStorageStats
fn default() -> ContainerStorageStats
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ContainerStorageStats
impl<'de> Deserialize<'de> for ContainerStorageStats
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<ContainerStorageStats, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<ContainerStorageStats, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ContainerStorageStats
impl PartialEq for ContainerStorageStats
Source§impl Serialize for ContainerStorageStats
impl Serialize for ContainerStorageStats
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for ContainerStorageStats
Auto Trait Implementations§
impl Freeze for ContainerStorageStats
impl RefUnwindSafe for ContainerStorageStats
impl Send for ContainerStorageStats
impl Sync for ContainerStorageStats
impl Unpin for ContainerStorageStats
impl UnsafeUnpin for ContainerStorageStats
impl UnwindSafe for ContainerStorageStats
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