Struct DataRegEventInd
#[repr(C)]pub struct DataRegEventInd {
pub registration_valid: u8,
pub registration: CommonRegInfo,
pub registration_details_3gpp_valid: u8,
pub registration_details_3gpp: _3GppRegInfo,
pub registration_details_3gpp2_valid: u8,
pub registration_details_3gpp2: _3Gpp2RegInfo,
}Expand description
Indication message; Indication for the corresponding registered event flag NW_IND_DATA_REG_EVENT_IND_FLAG.
Fields§
§registration_valid: u8Must be set to TRUE if data_registration is being passed.
registration: CommonRegInfoData registration.
registration_details_3gpp_valid: u8Must be set to TRUE if data_registration_details_3gpp is being passed.
registration_details_3gpp: _3GppRegInfoData registration details for 3GPP.
registration_details_3gpp2_valid: u8Must be set to TRUE if data_registration_details_3gpp2 is being passed.
registration_details_3gpp2: _3Gpp2RegInfoData registration details for 3GPP2.
Trait Implementations§
§impl Clone for DataRegEventInd
impl Clone for DataRegEventInd
§fn clone(&self) -> DataRegEventInd
fn clone(&self) -> DataRegEventInd
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 DataRegEventInd
impl RefUnwindSafe for DataRegEventInd
impl Send for DataRegEventInd
impl Sync for DataRegEventInd
impl Unpin for DataRegEventInd
impl UnwindSafe for DataRegEventInd
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