#[repr(C)]pub struct IONetworkStats {
pub inputPackets: u32,
pub inputErrors: u32,
pub outputPackets: u32,
pub outputErrors: u32,
pub collisions: u32,
}Available on crate feature
network only.Expand description
Generic network statistics structure. Field: inputPackets count input packets. Field: inputErrors count input errors. Field: outputPackets count output packets. Field: outputErrors count output errors. Field: collisions count collisions on CDMA networks.
See also Apple’s documentation
Fields§
§inputPackets: u32§inputErrors: u32§outputPackets: u32§outputErrors: u32§collisions: u32Trait Implementations§
Source§impl Clone for IONetworkStats
impl Clone for IONetworkStats
Source§fn clone(&self) -> IONetworkStats
fn clone(&self) -> IONetworkStats
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 IONetworkStats
impl Debug for IONetworkStats
Source§impl Encode for IONetworkStats
Available on crate feature objc2 only.
impl Encode for IONetworkStats
Available on crate feature
objc2 only.Source§impl PartialEq for IONetworkStats
impl PartialEq for IONetworkStats
Source§impl RefEncode for IONetworkStats
Available on crate feature objc2 only.
impl RefEncode for IONetworkStats
Available on crate feature
objc2 only.Source§const ENCODING_REF: Encoding
const ENCODING_REF: Encoding
The Objective-C type-encoding for a reference of this type. Read more
impl Copy for IONetworkStats
impl StructuralPartialEq for IONetworkStats
Auto Trait Implementations§
impl Freeze for IONetworkStats
impl RefUnwindSafe for IONetworkStats
impl Send for IONetworkStats
impl Sync for IONetworkStats
impl Unpin for IONetworkStats
impl UnwindSafe for IONetworkStats
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> EncodeArgument for Twhere
T: Encode,
impl<T> EncodeArgument for Twhere
T: Encode,
Source§const ENCODING_ARGUMENT: Encoding = T::ENCODING
const ENCODING_ARGUMENT: Encoding = T::ENCODING
The Objective-C type-encoding for this type.
Source§impl<T> EncodeReturn for Twhere
T: Encode,
impl<T> EncodeReturn for Twhere
T: Encode,
Source§const ENCODING_RETURN: Encoding = T::ENCODING
const ENCODING_RETURN: Encoding = T::ENCODING
The Objective-C type-encoding for this type.