#[non_exhaustive]pub struct ListDevicesOutputBuilder { /* private fields */ }Expand description
A builder for ListDevicesOutput.
Implementations§
source§impl ListDevicesOutputBuilder
impl ListDevicesOutputBuilder
sourcepub fn devices(self, input: Device) -> Self
pub fn devices(self, input: Device) -> Self
Appends an item to devices.
To override the contents of this collection use set_devices.
Information about the devices.
sourcepub fn set_devices(self, input: Option<Vec<Device>>) -> Self
pub fn set_devices(self, input: Option<Vec<Device>>) -> Self
Information about the devices.
sourcepub fn get_devices(&self) -> &Option<Vec<Device>>
pub fn get_devices(&self) -> &Option<Vec<Device>>
Information about the devices.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
If the number of items that are returned is significantly large, this is an identifier that is also returned. It can be used in a subsequent call to this operation to return the next set of items in the list.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
If the number of items that are returned is significantly large, this is an identifier that is also returned. It can be used in a subsequent call to this operation to return the next set of items in the list.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
If the number of items that are returned is significantly large, this is an identifier that is also returned. It can be used in a subsequent call to this operation to return the next set of items in the list.
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
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
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
source§impl PartialEq for ListDevicesOutputBuilder
impl PartialEq for ListDevicesOutputBuilder
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
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