pub struct ContainerStatsNetwork {
pub rx_bytes: u64,
pub rx_dropped: u64,
pub rx_errors: u64,
pub rx_packets: u64,
pub tx_bytes: u64,
pub tx_dropped: u64,
pub tx_errors: u64,
pub tx_packets: u64,
}
Fields§
§rx_bytes: u64
§rx_dropped: u64
§rx_errors: u64
§rx_packets: u64
§tx_bytes: u64
§tx_dropped: u64
§tx_errors: u64
§tx_packets: u64
Trait Implementations§
Source§impl<'de> Deserialize<'de> for ContainerStatsNetwork
impl<'de> Deserialize<'de> for ContainerStatsNetwork
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 ContainerStatsNetwork
impl RefUnwindSafe for ContainerStatsNetwork
impl Send for ContainerStatsNetwork
impl Sync for ContainerStatsNetwork
impl Unpin for ContainerStatsNetwork
impl UnwindSafe for ContainerStatsNetwork
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