CallConfigInfo

Struct CallConfigInfo 

#[repr(C)]
pub struct CallConfigInfo {
Show 14 fields pub ip_family_valid: u8, pub ip_family: IpFamily, pub apn_name_valid: u8, pub apn_name_buf: [c_char; 150], pub user_name_valid: u8, pub user_name_buf: [c_char; 127], pub password_valid: u8, pub password_buf: [c_char; 127], pub tech_pref_valid: u8, pub tech_pref: TechPref, pub umts_profile_valid: u8, pub umts_profile: i8, pub cdma_profile_valid: u8, pub cdma_profile: i8,
}

Fields§

§ip_family_valid: u8

Must be set to TRUE if ip_family is being passed.

§ip_family: IpFamily

MCM Data IP Family

§apn_name_valid: u8

Must be set to TRUE if apn_name is being passed.

§apn_name_buf: [c_char; 150]

MCM Data APN Name. A character string that identifies a PDN, as defined by the operator.

§user_name_valid: u8

Must be set to TRUE if user_name is being passed.

§user_name_buf: [c_char; 127]

Username for the APN.

§password_valid: u8

Must be set to TRUE if password is being passed.

§password_buf: [c_char; 127]

Password for the APN.

§tech_pref_valid: u8

Must be set to TRUE if tech_pref is being passed.

§tech_pref: TechPref

MCM Data Tech Preference

§umts_profile_valid: u8

Must be set to TRUE if umts_profile is being passed.

§umts_profile: i8

MCM Data UMTS/LTE profile ID.

§cdma_profile_valid: u8

Must be set to TRUE if cdma_profile is being passed.

§cdma_profile: i8

MCM Data CDMA profile ID.

Trait Implementations§

§

impl Clone for CallConfigInfo

§

fn clone(&self) -> CallConfigInfo

Returns a duplicate of the value. Read more
1.0.0 · Source§

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

Performs copy-assignment from source. Read more

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. 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,

Source§

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>,

Source§

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>,

Source§

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.