Struct aws_sdk_iotwireless::types::builders::GsmNmrObjBuilder
source · #[non_exhaustive]pub struct GsmNmrObjBuilder { /* private fields */ }Expand description
A builder for GsmNmrObj.
Implementations§
source§impl GsmNmrObjBuilder
impl GsmNmrObjBuilder
sourcepub fn bsic(self, input: i32) -> Self
pub fn bsic(self, input: i32) -> Self
GSM base station identity code (BSIC).
This field is required.sourcepub fn rx_level(self, input: i32) -> Self
pub fn rx_level(self, input: i32) -> Self
Rx level, which is the received signal power, measured in dBm (decibel-milliwatts).
sourcepub fn set_rx_level(self, input: Option<i32>) -> Self
pub fn set_rx_level(self, input: Option<i32>) -> Self
Rx level, which is the received signal power, measured in dBm (decibel-milliwatts).
sourcepub fn get_rx_level(&self) -> &Option<i32>
pub fn get_rx_level(&self) -> &Option<i32>
Rx level, which is the received signal power, measured in dBm (decibel-milliwatts).
sourcepub fn global_identity(self, input: GlobalIdentity) -> Self
pub fn global_identity(self, input: GlobalIdentity) -> Self
Global identity information of the GSM object.
sourcepub fn set_global_identity(self, input: Option<GlobalIdentity>) -> Self
pub fn set_global_identity(self, input: Option<GlobalIdentity>) -> Self
Global identity information of the GSM object.
sourcepub fn get_global_identity(&self) -> &Option<GlobalIdentity>
pub fn get_global_identity(&self) -> &Option<GlobalIdentity>
Global identity information of the GSM object.
Trait Implementations§
source§impl Clone for GsmNmrObjBuilder
impl Clone for GsmNmrObjBuilder
source§fn clone(&self) -> GsmNmrObjBuilder
fn clone(&self) -> GsmNmrObjBuilder
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 GsmNmrObjBuilder
impl Debug for GsmNmrObjBuilder
source§impl Default for GsmNmrObjBuilder
impl Default for GsmNmrObjBuilder
source§fn default() -> GsmNmrObjBuilder
fn default() -> GsmNmrObjBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for GsmNmrObjBuilder
impl PartialEq for GsmNmrObjBuilder
impl StructuralPartialEq for GsmNmrObjBuilder
Auto Trait Implementations§
impl Freeze for GsmNmrObjBuilder
impl RefUnwindSafe for GsmNmrObjBuilder
impl Send for GsmNmrObjBuilder
impl Sync for GsmNmrObjBuilder
impl Unpin for GsmNmrObjBuilder
impl UnwindSafe for GsmNmrObjBuilder
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.