//! Windows-specific extensions.
//!//! Available only for `cfg(target_os = "windows")`
/// Windows-specific extension for [IoCounters].
////// [IoCounters]: ../../struct.IoCounters.html
pubtraitIoCountersExt{/// Returns packets amount which were dropped while sending them.
fndrop_sent(&self)->u64;}#[cfg(target_os ="windows")]implIoCountersExt forcrate::IoCounters{fndrop_sent(&self)->u64{self.as_ref().drop_sent()}}