Struct aws_sdk_iotwireless::types::LteObj
source · #[non_exhaustive]pub struct LteObj {
pub mcc: Option<i32>,
pub mnc: Option<i32>,
pub eutran_cid: Option<i32>,
pub tac: Option<i32>,
pub lte_local_id: Option<LteLocalId>,
pub lte_timing_advance: Option<i32>,
pub rsrp: Option<i32>,
pub rsrq: Option<f32>,
pub nr_capable: bool,
pub lte_nmr: Option<Vec<LteNmrObj>>,
}Expand description
LTE object.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.mcc: Option<i32>Mobile Country Code.
mnc: Option<i32>Mobile Network Code.
eutran_cid: Option<i32>E-UTRAN (Evolved Universal Terrestrial Radio Access Network) Cell Global Identifier.
tac: Option<i32>LTE tracking area code.
lte_local_id: Option<LteLocalId>LTE local identification (local ID) information.
lte_timing_advance: Option<i32>LTE timing advance.
rsrp: Option<i32>Signal power of the reference signal received, measured in dBm (decibel-milliwatts).
rsrq: Option<f32>Signal quality of the reference Signal received, measured in decibels (dB).
nr_capable: boolParameter that determines whether the LTE object is capable of supporting NR (new radio).
lte_nmr: Option<Vec<LteNmrObj>>LTE object for network measurement reports.
Implementations§
source§impl LteObj
impl LteObj
sourcepub fn eutran_cid(&self) -> Option<i32>
pub fn eutran_cid(&self) -> Option<i32>
E-UTRAN (Evolved Universal Terrestrial Radio Access Network) Cell Global Identifier.
sourcepub fn lte_local_id(&self) -> Option<&LteLocalId>
pub fn lte_local_id(&self) -> Option<&LteLocalId>
LTE local identification (local ID) information.
sourcepub fn lte_timing_advance(&self) -> Option<i32>
pub fn lte_timing_advance(&self) -> Option<i32>
LTE timing advance.
sourcepub fn rsrp(&self) -> Option<i32>
pub fn rsrp(&self) -> Option<i32>
Signal power of the reference signal received, measured in dBm (decibel-milliwatts).
sourcepub fn rsrq(&self) -> Option<f32>
pub fn rsrq(&self) -> Option<f32>
Signal quality of the reference Signal received, measured in decibels (dB).
sourcepub fn nr_capable(&self) -> bool
pub fn nr_capable(&self) -> bool
Parameter that determines whether the LTE object is capable of supporting NR (new radio).