Struct aws_sdk_rekognition::operation::describe_project_versions::DescribeProjectVersionsOutput
source · #[non_exhaustive]pub struct DescribeProjectVersionsOutput {
pub project_version_descriptions: Option<Vec<ProjectVersionDescription>>,
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.project_version_descriptions: Option<Vec<ProjectVersionDescription>>A list of project version descriptions. The list is sorted by the creation date and time of the project versions, latest to earliest.
next_token: Option<String>If the previous response was incomplete (because there is more results to retrieve), Amazon Rekognition returns a pagination token in the response. You can use this pagination token to retrieve the next set of results.
Implementations§
source§impl DescribeProjectVersionsOutput
impl DescribeProjectVersionsOutput
sourcepub fn project_version_descriptions(&self) -> &[ProjectVersionDescription]
pub fn project_version_descriptions(&self) -> &[ProjectVersionDescription]
A list of project version descriptions. The list is sorted by the creation date and time of the project versions, latest to earliest.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .project_version_descriptions.is_none().
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
If the previous response was incomplete (because there is more results to retrieve), Amazon Rekognition returns a pagination token in the response. You can use this pagination token to retrieve the next set of results.
source§impl DescribeProjectVersionsOutput
impl DescribeProjectVersionsOutput
sourcepub fn builder() -> DescribeProjectVersionsOutputBuilder
pub fn builder() -> DescribeProjectVersionsOutputBuilder
Creates a new builder-style object to manufacture DescribeProjectVersionsOutput.
Trait Implementations§
source§impl Clone for DescribeProjectVersionsOutput
impl Clone for DescribeProjectVersionsOutput
source§fn clone(&self) -> DescribeProjectVersionsOutput
fn clone(&self) -> DescribeProjectVersionsOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq for DescribeProjectVersionsOutput
impl PartialEq for DescribeProjectVersionsOutput
source§fn eq(&self, other: &DescribeProjectVersionsOutput) -> bool
fn eq(&self, other: &DescribeProjectVersionsOutput) -> bool
self and other values to be equal, and is used
by ==.source§impl RequestId for DescribeProjectVersionsOutput
impl RequestId for DescribeProjectVersionsOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None if the service could not be reached.impl StructuralPartialEq for DescribeProjectVersionsOutput
Auto Trait Implementations§
impl Freeze for DescribeProjectVersionsOutput
impl RefUnwindSafe for DescribeProjectVersionsOutput
impl Send for DescribeProjectVersionsOutput
impl Sync for DescribeProjectVersionsOutput
impl Unpin for DescribeProjectVersionsOutput
impl UnwindSafe for DescribeProjectVersionsOutput
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