Struct aws_sdk_iotwireless::types::LteNmrObj
source · #[non_exhaustive]pub struct LteNmrObj {
pub pci: Option<i32>,
pub earfcn: Option<i32>,
pub eutran_cid: Option<i32>,
pub rsrp: Option<i32>,
pub rsrq: Option<f32>,
}Expand description
LTE object for network measurement reports.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.pci: Option<i32>Physical cell ID.
earfcn: Option<i32>E-UTRA (Evolved universal terrestrial Radio Access) absolute radio frequency channel Number (EARFCN).
eutran_cid: Option<i32>E-UTRAN (Evolved Universal Terrestrial Radio Access Network) cell global identifier (EUTRANCID).
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).
Implementations§
source§impl LteNmrObj
impl LteNmrObj
sourcepub fn earfcn(&self) -> Option<i32>
pub fn earfcn(&self) -> Option<i32>
E-UTRA (Evolved universal terrestrial Radio Access) absolute radio frequency channel Number (EARFCN).
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 (EUTRANCID).
Trait Implementations§
source§impl PartialEq<LteNmrObj> for LteNmrObj
impl PartialEq<LteNmrObj> for LteNmrObj
impl StructuralPartialEq for LteNmrObj
Auto Trait Implementations§
impl RefUnwindSafe for LteNmrObj
impl Send for LteNmrObj
impl Sync for LteNmrObj
impl Unpin for LteNmrObj
impl UnwindSafe for LteNmrObj
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