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 tdscdma(&self) -> Option<&[TdscdmaObj]>
pub fn tdscdma(&self) -> Option<&[TdscdmaObj]>
TD-SCDMA object information.
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<CellTowers> for CellTowers
impl PartialEq<CellTowers> 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 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