Struct aws_sdk_devicefarm::types::builders::RadiosBuilder
source · #[non_exhaustive]pub struct RadiosBuilder { /* private fields */ }Expand description
A builder for Radios.
Implementations§
source§impl RadiosBuilder
impl RadiosBuilder
sourcepub fn wifi(self, input: bool) -> Self
pub fn wifi(self, input: bool) -> Self
True if Wi-Fi is enabled at the beginning of the test. Otherwise, false.
sourcepub fn set_wifi(self, input: Option<bool>) -> Self
pub fn set_wifi(self, input: Option<bool>) -> Self
True if Wi-Fi is enabled at the beginning of the test. Otherwise, false.
sourcepub fn get_wifi(&self) -> &Option<bool>
pub fn get_wifi(&self) -> &Option<bool>
True if Wi-Fi is enabled at the beginning of the test. Otherwise, false.
sourcepub fn bluetooth(self, input: bool) -> Self
pub fn bluetooth(self, input: bool) -> Self
True if Bluetooth is enabled at the beginning of the test. Otherwise, false.
sourcepub fn set_bluetooth(self, input: Option<bool>) -> Self
pub fn set_bluetooth(self, input: Option<bool>) -> Self
True if Bluetooth is enabled at the beginning of the test. Otherwise, false.
sourcepub fn get_bluetooth(&self) -> &Option<bool>
pub fn get_bluetooth(&self) -> &Option<bool>
True if Bluetooth is enabled at the beginning of the test. Otherwise, false.
sourcepub fn nfc(self, input: bool) -> Self
pub fn nfc(self, input: bool) -> Self
True if NFC is enabled at the beginning of the test. Otherwise, false.
sourcepub fn set_nfc(self, input: Option<bool>) -> Self
pub fn set_nfc(self, input: Option<bool>) -> Self
True if NFC is enabled at the beginning of the test. Otherwise, false.
sourcepub fn get_nfc(&self) -> &Option<bool>
pub fn get_nfc(&self) -> &Option<bool>
True if NFC is enabled at the beginning of the test. Otherwise, false.
sourcepub fn gps(self, input: bool) -> Self
pub fn gps(self, input: bool) -> Self
True if GPS is enabled at the beginning of the test. Otherwise, false.
sourcepub fn set_gps(self, input: Option<bool>) -> Self
pub fn set_gps(self, input: Option<bool>) -> Self
True if GPS is enabled at the beginning of the test. Otherwise, false.
Trait Implementations§
source§impl Clone for RadiosBuilder
impl Clone for RadiosBuilder
source§fn clone(&self) -> RadiosBuilder
fn clone(&self) -> RadiosBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for RadiosBuilder
impl Debug for RadiosBuilder
source§impl Default for RadiosBuilder
impl Default for RadiosBuilder
source§fn default() -> RadiosBuilder
fn default() -> RadiosBuilder
source§impl PartialEq for RadiosBuilder
impl PartialEq for RadiosBuilder
impl StructuralPartialEq for RadiosBuilder
Auto Trait Implementations§
impl Freeze for RadiosBuilder
impl RefUnwindSafe for RadiosBuilder
impl Send for RadiosBuilder
impl Sync for RadiosBuilder
impl Unpin for RadiosBuilder
impl UnwindSafe for RadiosBuilder
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
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>
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>
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 more