#[repr(C)]
pub struct MIB_IPINTERFACE_ROW {
Show 35 fields pub Family: ADDRESS_FAMILY, pub InterfaceLuid: NET_LUID_LH, pub InterfaceIndex: u32, pub MaxReassemblySize: u32, pub InterfaceIdentifier: u64, pub MinRouterAdvertisementInterval: u32, pub MaxRouterAdvertisementInterval: u32, pub AdvertisingEnabled: BOOLEAN, pub ForwardingEnabled: BOOLEAN, pub WeakHostSend: BOOLEAN, pub WeakHostReceive: BOOLEAN, pub UseAutomaticMetric: BOOLEAN, pub UseNeighborUnreachabilityDetection: BOOLEAN, pub ManagedAddressConfigurationSupported: BOOLEAN, pub OtherStatefulConfigurationSupported: BOOLEAN, pub AdvertiseDefaultRoute: BOOLEAN, pub RouterDiscoveryBehavior: NL_ROUTER_DISCOVERY_BEHAVIOR, pub DadTransmits: u32, pub BaseReachableTime: u32, pub RetransmitTime: u32, pub PathMtuDiscoveryTimeout: u32, pub LinkLocalAddressBehavior: NL_LINK_LOCAL_ADDRESS_BEHAVIOR, pub LinkLocalAddressTimeout: u32, pub ZoneIndices: [u32; 16], pub SitePrefixLength: u32, pub Metric: u32, pub NlMtu: u32, pub Connected: BOOLEAN, pub SupportsWakeUpPatterns: BOOLEAN, pub SupportsNeighborDiscovery: BOOLEAN, pub SupportsRouterDiscovery: BOOLEAN, pub ReachableTime: u32, pub TransmitOffload: NL_INTERFACE_OFFLOAD_ROD, pub ReceiveOffload: NL_INTERFACE_OFFLOAD_ROD, pub DisableDefaultRoutes: BOOLEAN,
}

Fields§

§Family: ADDRESS_FAMILY§InterfaceLuid: NET_LUID_LH§InterfaceIndex: u32§MaxReassemblySize: u32§InterfaceIdentifier: u64§MinRouterAdvertisementInterval: u32§MaxRouterAdvertisementInterval: u32§AdvertisingEnabled: BOOLEAN§ForwardingEnabled: BOOLEAN§WeakHostSend: BOOLEAN§WeakHostReceive: BOOLEAN§UseAutomaticMetric: BOOLEAN§UseNeighborUnreachabilityDetection: BOOLEAN§ManagedAddressConfigurationSupported: BOOLEAN§OtherStatefulConfigurationSupported: BOOLEAN§AdvertiseDefaultRoute: BOOLEAN§RouterDiscoveryBehavior: NL_ROUTER_DISCOVERY_BEHAVIOR§DadTransmits: u32§BaseReachableTime: u32§RetransmitTime: u32§PathMtuDiscoveryTimeout: u32§LinkLocalAddressBehavior: NL_LINK_LOCAL_ADDRESS_BEHAVIOR§LinkLocalAddressTimeout: u32§ZoneIndices: [u32; 16]§SitePrefixLength: u32§Metric: u32§NlMtu: u32§Connected: BOOLEAN§SupportsWakeUpPatterns: BOOLEAN§SupportsNeighborDiscovery: BOOLEAN§SupportsRouterDiscovery: BOOLEAN§ReachableTime: u32§TransmitOffload: NL_INTERFACE_OFFLOAD_ROD§ReceiveOffload: NL_INTERFACE_OFFLOAD_ROD§DisableDefaultRoutes: BOOLEAN

Trait Implementations§

§

impl Clone for MIB_IPINTERFACE_ROW

§

fn clone(&self) -> Self

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
§

impl Default for MIB_IPINTERFACE_ROW

§

fn default() -> Self

Returns the “default value” for a type. Read more
§

impl Copy for MIB_IPINTERFACE_ROW

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.