#[non_exhaustive]pub struct ListDatasetEntriesOutput {
pub dataset_entries: Option<Vec<String>>,
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.dataset_entries: Option<Vec<String>>A list of entries (images) in the dataset.
next_token: Option<String>If the previous response was incomplete (because there is more results to retrieve), Amazon Rekognition Custom Labels returns a pagination token in the response. You can use this pagination token to retrieve the next set of results.
Implementations§
source§impl ListDatasetEntriesOutput
impl ListDatasetEntriesOutput
sourcepub fn dataset_entries(&self) -> &[String]
pub fn dataset_entries(&self) -> &[String]
A list of entries (images) in the dataset.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .dataset_entries.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 Custom Labels returns a pagination token in the response. You can use this pagination token to retrieve the next set of results.
source§impl ListDatasetEntriesOutput
impl ListDatasetEntriesOutput
sourcepub fn builder() -> ListDatasetEntriesOutputBuilder
pub fn builder() -> ListDatasetEntriesOutputBuilder
Creates a new builder-style object to manufacture ListDatasetEntriesOutput.
Trait Implementations§
source§impl Clone for ListDatasetEntriesOutput
impl Clone for ListDatasetEntriesOutput
source§fn clone(&self) -> ListDatasetEntriesOutput
fn clone(&self) -> ListDatasetEntriesOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ListDatasetEntriesOutput
impl Debug for ListDatasetEntriesOutput
source§impl PartialEq for ListDatasetEntriesOutput
impl PartialEq for ListDatasetEntriesOutput
source§fn eq(&self, other: &ListDatasetEntriesOutput) -> bool
fn eq(&self, other: &ListDatasetEntriesOutput) -> bool
self and other values to be equal, and is used
by ==.source§impl RequestId for ListDatasetEntriesOutput
impl RequestId for ListDatasetEntriesOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None if the service could not be reached.