Struct aws_sdk_iotwireless::types::CdmaNmrObj
source · #[non_exhaustive]pub struct CdmaNmrObj {
pub pn_offset: i32,
pub cdma_channel: i32,
pub pilot_power: Option<i32>,
pub base_station_id: Option<i32>,
}Expand description
CDMA 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.pn_offset: i32Pseudo-noise offset, which is a characteristic of the signal from a cell on a radio tower.
cdma_channel: i32CDMA channel information.
pilot_power: Option<i32>Transmit power level of the pilot signal, measured in dBm (decibel-milliwatts).
base_station_id: Option<i32>CDMA base station ID (BSID).
Implementations§
source§impl CdmaNmrObj
impl CdmaNmrObj
sourcepub fn pn_offset(&self) -> i32
pub fn pn_offset(&self) -> i32
Pseudo-noise offset, which is a characteristic of the signal from a cell on a radio tower.
sourcepub fn cdma_channel(&self) -> i32
pub fn cdma_channel(&self) -> i32
CDMA channel information.
sourcepub fn pilot_power(&self) -> Option<i32>
pub fn pilot_power(&self) -> Option<i32>
Transmit power level of the pilot signal, measured in dBm (decibel-milliwatts).
sourcepub fn base_station_id(&self) -> Option<i32>
pub fn base_station_id(&self) -> Option<i32>
CDMA base station ID (BSID).
source§impl CdmaNmrObj
impl CdmaNmrObj
sourcepub fn builder() -> CdmaNmrObjBuilder
pub fn builder() -> CdmaNmrObjBuilder
Creates a new builder-style object to manufacture CdmaNmrObj.
Trait Implementations§
source§impl Clone for CdmaNmrObj
impl Clone for CdmaNmrObj
source§fn clone(&self) -> CdmaNmrObj
fn clone(&self) -> CdmaNmrObj
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 CdmaNmrObj
impl Debug for CdmaNmrObj
source§impl PartialEq for CdmaNmrObj
impl PartialEq for CdmaNmrObj
source§fn eq(&self, other: &CdmaNmrObj) -> bool
fn eq(&self, other: &CdmaNmrObj) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for CdmaNmrObj
Auto Trait Implementations§
impl Freeze for CdmaNmrObj
impl RefUnwindSafe for CdmaNmrObj
impl Send for CdmaNmrObj
impl Sync for CdmaNmrObj
impl Unpin for CdmaNmrObj
impl UnwindSafe for CdmaNmrObj
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.