#[non_exhaustive]pub struct ListDevicesOutputBuilder { /* private fields */ }
Expand description
A builder for ListDevicesOutput
.
Implementations§
source§impl ListDevicesOutputBuilder
impl ListDevicesOutputBuilder
sourcepub fn device_summaries(self, input: DeviceSummary) -> Self
pub fn device_summaries(self, input: DeviceSummary) -> Self
Appends an item to device_summaries
.
To override the contents of this collection use set_device_summaries
.
Summary of devices.
sourcepub fn set_device_summaries(self, input: Option<Vec<DeviceSummary>>) -> Self
pub fn set_device_summaries(self, input: Option<Vec<DeviceSummary>>) -> Self
Summary of devices.
sourcepub fn get_device_summaries(&self) -> &Option<Vec<DeviceSummary>>
pub fn get_device_summaries(&self) -> &Option<Vec<DeviceSummary>>
Summary of devices.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
The response from the last list when returning a list large enough to need tokening.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
The response from the last list when returning a list large enough to need tokening.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
The response from the last list when returning a list large enough to need tokening.
sourcepub fn build(self) -> ListDevicesOutput
pub fn build(self) -> ListDevicesOutput
Consumes the builder and constructs a ListDevicesOutput
.
Trait Implementations§
source§impl Clone for ListDevicesOutputBuilder
impl Clone for ListDevicesOutputBuilder
source§fn clone(&self) -> ListDevicesOutputBuilder
fn clone(&self) -> ListDevicesOutputBuilder
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 ListDevicesOutputBuilder
impl Debug for ListDevicesOutputBuilder
source§impl Default for ListDevicesOutputBuilder
impl Default for ListDevicesOutputBuilder
source§fn default() -> ListDevicesOutputBuilder
fn default() -> ListDevicesOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for ListDevicesOutputBuilder
impl PartialEq for ListDevicesOutputBuilder
source§fn eq(&self, other: &ListDevicesOutputBuilder) -> bool
fn eq(&self, other: &ListDevicesOutputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ListDevicesOutputBuilder
Auto Trait Implementations§
impl Freeze for ListDevicesOutputBuilder
impl RefUnwindSafe for ListDevicesOutputBuilder
impl Send for ListDevicesOutputBuilder
impl Sync for ListDevicesOutputBuilder
impl Unpin for ListDevicesOutputBuilder
impl UnwindSafe for ListDevicesOutputBuilder
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.