Struct aws_sdk_iotwireless::types::LteNmrObj
source · #[non_exhaustive]pub struct LteNmrObj {
pub pci: i32,
pub earfcn: i32,
pub eutran_cid: 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: i32Physical cell ID.
earfcn: i32E-UTRA (Evolved universal terrestrial Radio Access) absolute radio frequency channel Number (EARFCN).
eutran_cid: i32E-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) -> i32
pub fn earfcn(&self) -> i32
E-UTRA (Evolved universal terrestrial Radio Access) absolute radio frequency channel Number (EARFCN).
sourcepub fn eutran_cid(&self) -> i32
pub fn eutran_cid(&self) -> i32
E-UTRAN (Evolved Universal Terrestrial Radio Access Network) cell global identifier (EUTRANCID).
Trait Implementations§
impl StructuralPartialEq for LteNmrObj
Auto Trait Implementations§
impl Freeze for LteNmrObj
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.