Struct aws_sdk_iotwireless::types::WcdmaNmrObj
source · #[non_exhaustive]pub struct WcdmaNmrObj {
pub uarfcndl: i32,
pub psc: i32,
pub utran_cid: i32,
pub rscp: Option<i32>,
pub path_loss: Option<i32>,
}Expand description
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.uarfcndl: i32WCDMA UTRA Absolute RF Channel Number downlink.
psc: i32Primary Scrambling Code.
utran_cid: i32UTRAN (UMTS Terrestrial Radio Access Network) Cell Global Identifier.
rscp: Option<i32>Received Signal Code Power (signal power) (dBm)
path_loss: Option<i32>Path loss, or path attenuation, is the reduction in power density of an electromagnetic wave as it propagates through space.
Implementations§
source§impl WcdmaNmrObj
impl WcdmaNmrObj
source§impl WcdmaNmrObj
impl WcdmaNmrObj
sourcepub fn builder() -> WcdmaNmrObjBuilder
pub fn builder() -> WcdmaNmrObjBuilder
Creates a new builder-style object to manufacture WcdmaNmrObj.
Trait Implementations§
source§impl Clone for WcdmaNmrObj
impl Clone for WcdmaNmrObj
source§fn clone(&self) -> WcdmaNmrObj
fn clone(&self) -> WcdmaNmrObj
Returns a copy 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 moresource§impl Debug for WcdmaNmrObj
impl Debug for WcdmaNmrObj
source§impl PartialEq for WcdmaNmrObj
impl PartialEq for WcdmaNmrObj
source§fn eq(&self, other: &WcdmaNmrObj) -> bool
fn eq(&self, other: &WcdmaNmrObj) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for WcdmaNmrObj
Auto Trait Implementations§
impl RefUnwindSafe for WcdmaNmrObj
impl Send for WcdmaNmrObj
impl Sync for WcdmaNmrObj
impl Unpin for WcdmaNmrObj
impl UnwindSafe for WcdmaNmrObj
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> 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>
Creates a shared type from an unshared type.