Struct aws_sdk_iotwireless::types::CellTowers
source · #[non_exhaustive]pub struct CellTowers {
pub gsm: Option<Vec<GsmObj>>,
pub wcdma: Option<Vec<WcdmaObj>>,
pub tdscdma: Option<Vec<TdscdmaObj>>,
pub lte: Option<Vec<LteObj>>,
pub cdma: Option<Vec<CdmaObj>>,
}Expand description
The cell towers that were used to perform the measurements.
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.gsm: Option<Vec<GsmObj>>GSM object information.
wcdma: Option<Vec<WcdmaObj>>WCDMA object information.
tdscdma: Option<Vec<TdscdmaObj>>TD-SCDMA object information.
lte: Option<Vec<LteObj>>LTE object information.
cdma: Option<Vec<CdmaObj>>CDMA object information.
Implementations§
source§impl CellTowers
impl CellTowers
sourcepub fn gsm(&self) -> &[GsmObj]
pub fn gsm(&self) -> &[GsmObj]
GSM object information.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .gsm.is_none().
sourcepub fn wcdma(&self) -> &[WcdmaObj]
pub fn wcdma(&self) -> &[WcdmaObj]
WCDMA object information.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .wcdma.is_none().
sourcepub fn tdscdma(&self) -> &[TdscdmaObj]
pub fn tdscdma(&self) -> &[TdscdmaObj]
TD-SCDMA object information.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .tdscdma.is_none().
source§impl CellTowers
impl CellTowers
sourcepub fn builder() -> CellTowersBuilder
pub fn builder() -> CellTowersBuilder
Creates a new builder-style object to manufacture CellTowers.
Trait Implementations§
source§impl Clone for CellTowers
impl Clone for CellTowers
source§fn clone(&self) -> CellTowers
fn clone(&self) -> CellTowers
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 CellTowers
impl Debug for CellTowers
source§impl PartialEq for CellTowers
impl PartialEq for CellTowers
source§fn eq(&self, other: &CellTowers) -> bool
fn eq(&self, other: &CellTowers) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for CellTowers
Auto Trait Implementations§
impl Freeze for CellTowers
impl RefUnwindSafe for CellTowers
impl Send for CellTowers
impl Sync for CellTowers
impl Unpin for CellTowers
impl UnwindSafe for CellTowers
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.