Struct DataCallState
#[repr(C)]pub struct DataCallState {
pub profile_idx: u8,
pub name: [c_char; 16],
pub ip_family: DataCallIpFamily,
pub status: DataCallStatus,
pub err: DataCallError,
pub address_status: AddressStatus,
}Fields§
§profile_idx: u8UMTS/CMDA profile ID.
name: [c_char; 16]Interface Name.
ip_family: DataCallIpFamilyIP version.
status: DataCallStatusThe dial status.
err: DataCallErrorThe Reason code after data call disconnected.
address_status: AddressStatusTrait Implementations§
§impl Clone for DataCallState
impl Clone for DataCallState
§fn clone(&self) -> DataCallState
fn clone(&self) -> DataCallState
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 moreimpl Copy for DataCallState
Auto Trait Implementations§
impl Freeze for DataCallState
impl RefUnwindSafe for DataCallState
impl Send for DataCallState
impl Sync for DataCallState
impl Unpin for DataCallState
impl UnwindSafe for DataCallState
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