Struct RegistrationStatusCommon
#[repr(transparent)]pub struct RegistrationStatusCommon(CommonRegInfo);Expand description
Common registration status information.
Part of RegistrationStatus.
Tuple Fields§
§0: CommonRegInfoImplementations§
§impl RegistrationStatusCommon
impl RegistrationStatusCommon
const fn from_sys_ref(info: &CommonRegInfo) -> &Self
pub const fn tech_domain(&self) -> TechDomainType
pub const fn tech_domain(&self) -> TechDomainType
Returns the technology domain.
pub const fn radio_tech(&self) -> RadioTechType
pub const fn radio_tech(&self) -> RadioTechType
Returns the radio technology.
pub const fn roaming(&self) -> RoamStateType
pub const fn roaming(&self) -> RoamStateType
Returns the roaming state.
pub const fn deny_reason(&self) -> DenyReasonType
pub const fn deny_reason(&self) -> DenyReasonType
Returns the deny reason.
According to the Quectel docs this is only set in some cases?? Needs to be checked.
pub const fn registration_state(&self) -> ServiceType
pub const fn registration_state(&self) -> ServiceType
Returns the registration state.
Trait Implementations§
§impl Clone for RegistrationStatusCommon
impl Clone for RegistrationStatusCommon
§fn clone(&self) -> RegistrationStatusCommon
fn clone(&self) -> RegistrationStatusCommon
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 more§impl Debug for RegistrationStatusCommon
impl Debug for RegistrationStatusCommon
§impl Serialize for RegistrationStatusCommon
Available on crate feature serde only.
impl Serialize for RegistrationStatusCommon
Available on crate feature
serde only.Auto Trait Implementations§
impl Freeze for RegistrationStatusCommon
impl RefUnwindSafe for RegistrationStatusCommon
impl Send for RegistrationStatusCommon
impl Sync for RegistrationStatusCommon
impl Unpin for RegistrationStatusCommon
impl UnwindSafe for RegistrationStatusCommon
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