#[non_exhaustive]pub struct DescribeProjectsInput {
pub next_token: Option<String>,
pub max_results: Option<i32>,
pub project_names: Option<Vec<String>>,
pub features: Option<Vec<CustomizationFeature>>,
}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.next_token: Option<String>If the previous response was incomplete (because there is more results to retrieve), Rekognition returns a pagination token in the response. You can use this pagination token to retrieve the next set of results.
max_results: Option<i32>The maximum number of results to return per paginated call. The largest value you can specify is 100. If you specify a value greater than 100, a ValidationException error occurs. The default value is 100.
project_names: Option<Vec<String>>A list of the projects that you want Rekognition to describe. If you don't specify a value, the response includes descriptions for all the projects in your AWS account.
features: Option<Vec<CustomizationFeature>>Specifies the type of customization to filter projects by. If no value is specified, CUSTOM_LABELS is used as a default.
Implementations§
source§impl DescribeProjectsInput
impl DescribeProjectsInput
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), Rekognition returns a pagination token in the response. You can use this pagination token to retrieve the next set of results.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of results to return per paginated call. The largest value you can specify is 100. If you specify a value greater than 100, a ValidationException error occurs. The default value is 100.
sourcepub fn project_names(&self) -> &[String]
pub fn project_names(&self) -> &[String]
A list of the projects that you want Rekognition to describe. If you don't specify a value, the response includes descriptions for all the projects in your AWS account.
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_names.is_none().
sourcepub fn features(&self) -> &[CustomizationFeature]
pub fn features(&self) -> &[CustomizationFeature]
Specifies the type of customization to filter projects by. If no value is specified, CUSTOM_LABELS is used as a default.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .features.is_none().
source§impl DescribeProjectsInput
impl DescribeProjectsInput
sourcepub fn builder() -> DescribeProjectsInputBuilder
pub fn builder() -> DescribeProjectsInputBuilder
Creates a new builder-style object to manufacture DescribeProjectsInput.
Trait Implementations§
source§impl Clone for DescribeProjectsInput
impl Clone for DescribeProjectsInput
source§fn clone(&self) -> DescribeProjectsInput
fn clone(&self) -> DescribeProjectsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for DescribeProjectsInput
impl Debug for DescribeProjectsInput
source§impl PartialEq for DescribeProjectsInput
impl PartialEq for DescribeProjectsInput
impl StructuralPartialEq for DescribeProjectsInput
Auto Trait Implementations§
impl Freeze for DescribeProjectsInput
impl RefUnwindSafe for DescribeProjectsInput
impl Send for DescribeProjectsInput
impl Sync for DescribeProjectsInput
impl Unpin for DescribeProjectsInput
impl UnwindSafe for DescribeProjectsInput
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