Struct aws_sdk_fsx::operation::describe_data_repository_tasks::DescribeDataRepositoryTasksOutput
source · #[non_exhaustive]pub struct DescribeDataRepositoryTasksOutput {
pub data_repository_tasks: Option<Vec<DataRepositoryTask>>,
pub next_token: Option<String>,
/* private fields */
}
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.data_repository_tasks: Option<Vec<DataRepositoryTask>>
The collection of data repository task descriptions returned.
next_token: Option<String>
(Optional) Opaque pagination token returned from a previous operation (String). If present, this token indicates from what point you can continue processing the request, where the previous NextToken
value left off.
Implementations§
source§impl DescribeDataRepositoryTasksOutput
impl DescribeDataRepositoryTasksOutput
sourcepub fn data_repository_tasks(&self) -> &[DataRepositoryTask]
pub fn data_repository_tasks(&self) -> &[DataRepositoryTask]
The collection of data repository task descriptions returned.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .data_repository_tasks.is_none()
.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
(Optional) Opaque pagination token returned from a previous operation (String). If present, this token indicates from what point you can continue processing the request, where the previous NextToken
value left off.
source§impl DescribeDataRepositoryTasksOutput
impl DescribeDataRepositoryTasksOutput
sourcepub fn builder() -> DescribeDataRepositoryTasksOutputBuilder
pub fn builder() -> DescribeDataRepositoryTasksOutputBuilder
Creates a new builder-style object to manufacture DescribeDataRepositoryTasksOutput
.
Trait Implementations§
source§impl Clone for DescribeDataRepositoryTasksOutput
impl Clone for DescribeDataRepositoryTasksOutput
source§fn clone(&self) -> DescribeDataRepositoryTasksOutput
fn clone(&self) -> DescribeDataRepositoryTasksOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for DescribeDataRepositoryTasksOutput
impl PartialEq for DescribeDataRepositoryTasksOutput
source§fn eq(&self, other: &DescribeDataRepositoryTasksOutput) -> bool
fn eq(&self, other: &DescribeDataRepositoryTasksOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for DescribeDataRepositoryTasksOutput
impl RequestId for DescribeDataRepositoryTasksOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.impl StructuralPartialEq for DescribeDataRepositoryTasksOutput
Auto Trait Implementations§
impl Freeze for DescribeDataRepositoryTasksOutput
impl RefUnwindSafe for DescribeDataRepositoryTasksOutput
impl Send for DescribeDataRepositoryTasksOutput
impl Sync for DescribeDataRepositoryTasksOutput
impl Unpin for DescribeDataRepositoryTasksOutput
impl UnwindSafe for DescribeDataRepositoryTasksOutput
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> 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