Struct aws_sdk_iotwireless::types::TdscdmaNmrObj
source · #[non_exhaustive]pub struct TdscdmaNmrObj {
pub uarfcn: i32,
pub cell_params: i32,
pub utran_cid: Option<i32>,
pub rscp: Option<i32>,
pub path_loss: Option<i32>,
}Expand description
TD-SCDMA 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.uarfcn: i32TD-SCDMA UTRA (Universal Terrestrial Radio Access Network) absolute RF channel number.
cell_params: i32Cell parameters for TD-SCDMA network measurement reports object.
utran_cid: Option<i32>UTRAN (UMTS Terrestrial Radio Access Network) cell global identifier.
rscp: Option<i32>Code power of the received signal, measured in decibel-milliwatts (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 TdscdmaNmrObj
impl TdscdmaNmrObj
sourcepub fn uarfcn(&self) -> i32
pub fn uarfcn(&self) -> i32
TD-SCDMA UTRA (Universal Terrestrial Radio Access Network) absolute RF channel number.
sourcepub fn cell_params(&self) -> i32
pub fn cell_params(&self) -> i32
Cell parameters for TD-SCDMA network measurement reports object.
sourcepub fn utran_cid(&self) -> Option<i32>
pub fn utran_cid(&self) -> Option<i32>
UTRAN (UMTS Terrestrial Radio Access Network) cell global identifier.
source§impl TdscdmaNmrObj
impl TdscdmaNmrObj
sourcepub fn builder() -> TdscdmaNmrObjBuilder
pub fn builder() -> TdscdmaNmrObjBuilder
Creates a new builder-style object to manufacture TdscdmaNmrObj.
Trait Implementations§
source§impl Clone for TdscdmaNmrObj
impl Clone for TdscdmaNmrObj
source§fn clone(&self) -> TdscdmaNmrObj
fn clone(&self) -> TdscdmaNmrObj
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 TdscdmaNmrObj
impl Debug for TdscdmaNmrObj
source§impl PartialEq for TdscdmaNmrObj
impl PartialEq for TdscdmaNmrObj
impl StructuralPartialEq for TdscdmaNmrObj
Auto Trait Implementations§
impl Freeze for TdscdmaNmrObj
impl RefUnwindSafe for TdscdmaNmrObj
impl Send for TdscdmaNmrObj
impl Sync for TdscdmaNmrObj
impl Unpin for TdscdmaNmrObj
impl UnwindSafe for TdscdmaNmrObj
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.