#[non_exhaustive]pub struct ListDevicePoolsInput {
pub arn: Option<String>,
pub type: Option<DevicePoolType>,
pub next_token: Option<String>,
}Expand description
Represents the result of a list device pools request.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.arn: Option<String>The project ARN.
type: Option<DevicePoolType>The device pools' type.
Allowed values include:
-
CURATED: A device pool that is created and managed by AWS Device Farm.
-
PRIVATE: A device pool that is created and managed by the device pool developer.
next_token: Option<String>An identifier that was returned from the previous call to this operation, which can be used to return the next set of items in the list.
Implementations§
source§impl ListDevicePoolsInput
impl ListDevicePoolsInput
sourcepub fn type(&self) -> Option<&DevicePoolType>
pub fn type(&self) -> Option<&DevicePoolType>
The device pools' type.
Allowed values include:
-
CURATED: A device pool that is created and managed by AWS Device Farm.
-
PRIVATE: A device pool that is created and managed by the device pool developer.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
An identifier that was returned from the previous call to this operation, which can be used to return the next set of items in the list.
source§impl ListDevicePoolsInput
impl ListDevicePoolsInput
sourcepub fn builder() -> ListDevicePoolsInputBuilder
pub fn builder() -> ListDevicePoolsInputBuilder
Creates a new builder-style object to manufacture ListDevicePoolsInput.
Trait Implementations§
source§impl Clone for ListDevicePoolsInput
impl Clone for ListDevicePoolsInput
source§fn clone(&self) -> ListDevicePoolsInput
fn clone(&self) -> ListDevicePoolsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ListDevicePoolsInput
impl Debug for ListDevicePoolsInput
source§impl PartialEq for ListDevicePoolsInput
impl PartialEq for ListDevicePoolsInput
impl StructuralPartialEq for ListDevicePoolsInput
Auto Trait Implementations§
impl Freeze for ListDevicePoolsInput
impl RefUnwindSafe for ListDevicePoolsInput
impl Send for ListDevicePoolsInput
impl Sync for ListDevicePoolsInput
impl Unpin for ListDevicePoolsInput
impl UnwindSafe for ListDevicePoolsInput
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