Struct DataCall
#[repr(C)]pub struct DataCall {
pub profile_idx: c_char,
pub reconnect: bool,
pub ip_family: DataCallIpFamily,
pub cdma_username: [c_char; 127],
pub cdma_password: [c_char; 127],
}Fields§
§profile_idx: c_charUMTS/CMDA profile ID.
reconnect: boolWhether to re-dial after disconnecting the network.
ip_family: DataCallIpFamilyIP version.
cdma_username: [c_char; 127]Username used during data network authentication.
cdma_password: [c_char; 127]Password to be used during data network authentication.
Auto Trait Implementations§
impl Freeze for DataCall
impl RefUnwindSafe for DataCall
impl Send for DataCall
impl Sync for DataCall
impl Unpin for DataCall
impl UnwindSafe for DataCall
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