Struct aws_sdk_devicefarm::operation::get_device_pool_compatibility::builders::GetDevicePoolCompatibilityOutputBuilder
source · #[non_exhaustive]pub struct GetDevicePoolCompatibilityOutputBuilder { /* private fields */ }
Expand description
A builder for GetDevicePoolCompatibilityOutput
.
Implementations§
source§impl GetDevicePoolCompatibilityOutputBuilder
impl GetDevicePoolCompatibilityOutputBuilder
sourcepub fn compatible_devices(self, input: DevicePoolCompatibilityResult) -> Self
pub fn compatible_devices(self, input: DevicePoolCompatibilityResult) -> Self
Appends an item to compatible_devices
.
To override the contents of this collection use set_compatible_devices
.
Information about compatible devices.
sourcepub fn set_compatible_devices(
self,
input: Option<Vec<DevicePoolCompatibilityResult>>
) -> Self
pub fn set_compatible_devices( self, input: Option<Vec<DevicePoolCompatibilityResult>> ) -> Self
Information about compatible devices.
sourcepub fn get_compatible_devices(
&self
) -> &Option<Vec<DevicePoolCompatibilityResult>>
pub fn get_compatible_devices( &self ) -> &Option<Vec<DevicePoolCompatibilityResult>>
Information about compatible devices.
sourcepub fn incompatible_devices(self, input: DevicePoolCompatibilityResult) -> Self
pub fn incompatible_devices(self, input: DevicePoolCompatibilityResult) -> Self
Appends an item to incompatible_devices
.
To override the contents of this collection use set_incompatible_devices
.
Information about incompatible devices.
sourcepub fn set_incompatible_devices(
self,
input: Option<Vec<DevicePoolCompatibilityResult>>
) -> Self
pub fn set_incompatible_devices( self, input: Option<Vec<DevicePoolCompatibilityResult>> ) -> Self
Information about incompatible devices.
sourcepub fn get_incompatible_devices(
&self
) -> &Option<Vec<DevicePoolCompatibilityResult>>
pub fn get_incompatible_devices( &self ) -> &Option<Vec<DevicePoolCompatibilityResult>>
Information about incompatible devices.
sourcepub fn build(self) -> GetDevicePoolCompatibilityOutput
pub fn build(self) -> GetDevicePoolCompatibilityOutput
Consumes the builder and constructs a GetDevicePoolCompatibilityOutput
.
Trait Implementations§
source§impl Clone for GetDevicePoolCompatibilityOutputBuilder
impl Clone for GetDevicePoolCompatibilityOutputBuilder
source§fn clone(&self) -> GetDevicePoolCompatibilityOutputBuilder
fn clone(&self) -> GetDevicePoolCompatibilityOutputBuilder
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 Default for GetDevicePoolCompatibilityOutputBuilder
impl Default for GetDevicePoolCompatibilityOutputBuilder
source§fn default() -> GetDevicePoolCompatibilityOutputBuilder
fn default() -> GetDevicePoolCompatibilityOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for GetDevicePoolCompatibilityOutputBuilder
impl PartialEq for GetDevicePoolCompatibilityOutputBuilder
source§fn eq(&self, other: &GetDevicePoolCompatibilityOutputBuilder) -> bool
fn eq(&self, other: &GetDevicePoolCompatibilityOutputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for GetDevicePoolCompatibilityOutputBuilder
Auto Trait Implementations§
impl Freeze for GetDevicePoolCompatibilityOutputBuilder
impl RefUnwindSafe for GetDevicePoolCompatibilityOutputBuilder
impl Send for GetDevicePoolCompatibilityOutputBuilder
impl Sync for GetDevicePoolCompatibilityOutputBuilder
impl Unpin for GetDevicePoolCompatibilityOutputBuilder
impl UnwindSafe for GetDevicePoolCompatibilityOutputBuilder
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>
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.