Struct windows_sys::Networking::Sockets::BandwidthStatistics
[−]#[repr(C)]pub struct BandwidthStatistics {
pub OutboundBitsPerSecond: u64,
pub InboundBitsPerSecond: u64,
pub OutboundBitsPerSecondInstability: u64,
pub InboundBitsPerSecondInstability: u64,
pub OutboundBandwidthPeaked: bool,
pub InboundBandwidthPeaked: bool,
}
Expand description
Required features: ‘Networking_Sockets’
Fields
OutboundBitsPerSecond: u64
InboundBitsPerSecond: u64
OutboundBitsPerSecondInstability: u64
InboundBitsPerSecondInstability: u64
OutboundBandwidthPeaked: bool
InboundBandwidthPeaked: bool
Trait Implementations
impl Clone for BandwidthStatistics
impl Clone for BandwidthStatistics
impl Copy for BandwidthStatistics
Auto Trait Implementations
impl RefUnwindSafe for BandwidthStatistics
impl Send for BandwidthStatistics
impl Sync for BandwidthStatistics
impl Unpin for BandwidthStatistics
impl UnwindSafe for BandwidthStatistics
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more