#[repr(C)]
pub struct NDIS_CO_DEVICE_PROFILE {
Show 28 fields pub DeviceDescription: NDIS_VAR_DATA_DESC, pub DevSpecificInfo: NDIS_VAR_DATA_DESC, pub ulTAPISupplementaryPassThru: u32, pub ulAddressModes: u32, pub ulNumAddresses: u32, pub ulBearerModes: u32, pub ulMaxTxRate: u32, pub ulMinTxRate: u32, pub ulMaxRxRate: u32, pub ulMinRxRate: u32, pub ulMediaModes: u32, pub ulGenerateToneModes: u32, pub ulGenerateToneMaxNumFreq: u32, pub ulGenerateDigitModes: u32, pub ulMonitorToneMaxNumFreq: u32, pub ulMonitorToneMaxNumEntries: u32, pub ulMonitorDigitModes: u32, pub ulGatherDigitsMinTimeout: u32, pub ulGatherDigitsMaxTimeout: u32, pub ulDevCapFlags: u32, pub ulMaxNumActiveCalls: u32, pub ulAnswerMode: u32, pub ulUUIAcceptSize: u32, pub ulUUIAnswerSize: u32, pub ulUUIMakeCallSize: u32, pub ulUUIDropSize: u32, pub ulUUISendUserUserInfoSize: u32, pub ulUUICallInfoSize: u32,
}

Fields§

§DeviceDescription: NDIS_VAR_DATA_DESC§DevSpecificInfo: NDIS_VAR_DATA_DESC§ulTAPISupplementaryPassThru: u32§ulAddressModes: u32§ulNumAddresses: u32§ulBearerModes: u32§ulMaxTxRate: u32§ulMinTxRate: u32§ulMaxRxRate: u32§ulMinRxRate: u32§ulMediaModes: u32§ulGenerateToneModes: u32§ulGenerateToneMaxNumFreq: u32§ulGenerateDigitModes: u32§ulMonitorToneMaxNumFreq: u32§ulMonitorToneMaxNumEntries: u32§ulMonitorDigitModes: u32§ulGatherDigitsMinTimeout: u32§ulGatherDigitsMaxTimeout: u32§ulDevCapFlags: u32§ulMaxNumActiveCalls: u32§ulAnswerMode: u32§ulUUIAcceptSize: u32§ulUUIAnswerSize: u32§ulUUIMakeCallSize: u32§ulUUIDropSize: u32§ulUUISendUserUserInfoSize: u32§ulUUICallInfoSize: u32

Trait Implementations§

§

impl Clone for NDIS_CO_DEVICE_PROFILE

§

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 Debug for NDIS_CO_DEVICE_PROFILE

§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
§

impl Default for NDIS_CO_DEVICE_PROFILE

§

fn default() -> Self

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

impl PartialEq for NDIS_CO_DEVICE_PROFILE

§

fn eq(&self, other: &Self) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
§

impl Copy for NDIS_CO_DEVICE_PROFILE

§

impl Eq for NDIS_CO_DEVICE_PROFILE

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.