Struct RegStatusInfo
#[repr(C)]pub struct RegStatusInfo {
pub voice_registration_valid: u8,
pub voice_registration: CommonRegInfo,
pub data_registration_valid: u8,
pub data_registration: CommonRegInfo,
pub voice_registration_details_3gpp_valid: u8,
pub voice_registration_details_3gpp: _3GppRegInfo,
pub data_registration_details_3gpp_valid: u8,
pub data_registration_details_3gpp: _3GppRegInfo,
pub voice_registration_details_3gpp2_valid: u8,
pub voice_registration_details_3gpp2: _3Gpp2RegInfo,
pub data_registration_details_3gpp2_valid: u8,
pub data_registration_details_3gpp2: _3Gpp2RegInfo,
}Expand description
QL_MCM_NW_REG_STATUS_INFO_T
Fields§
§voice_registration_valid: u8Must be set to TRUE if voice_registration is being passed.
voice_registration: CommonRegInfoVoice registration.
data_registration_valid: u8Must be set to TRUE if data_registration is being passed.
data_registration: CommonRegInfoData registration.
voice_registration_details_3gpp_valid: u8Must be set to TRUE if voice_registration_details_3gpp is being passed.
voice_registration_details_3gpp: _3GppRegInfoVoice registration details for 3GPP.
data_registration_details_3gpp_valid: u8Must be set to TRUE if data_registration_details_3gpp is being passed.
data_registration_details_3gpp: _3GppRegInfoData registration details for 3GPP.
voice_registration_details_3gpp2_valid: u8Must be set to TRUE if voice_registration_details_3gpp2 is being passed.
voice_registration_details_3gpp2: _3Gpp2RegInfoVoice registration details for 3GPP2.
data_registration_details_3gpp2_valid: u8Must be set to TRUE if data_registration_details_3gpp2 is being passed.
data_registration_details_3gpp2: _3Gpp2RegInfoData registration details for 3GPP2.
Trait Implementations§
§impl Clone for RegStatusInfo
impl Clone for RegStatusInfo
§fn clone(&self) -> RegStatusInfo
fn clone(&self) -> RegStatusInfo
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 moreAuto Trait Implementations§
impl Freeze for RegStatusInfo
impl RefUnwindSafe for RegStatusInfo
impl Send for RegStatusInfo
impl Sync for RegStatusInfo
impl Unpin for RegStatusInfo
impl UnwindSafe for RegStatusInfo
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