Struct aws_sdk_lookoutvision::types::DatasetMetadata
source · #[non_exhaustive]pub struct DatasetMetadata {
pub dataset_type: Option<String>,
pub creation_timestamp: Option<DateTime>,
pub status: Option<DatasetStatus>,
pub status_message: Option<String>,
}Expand description
Summary information for an Amazon Lookout for Vision dataset. For more information, see DescribeDataset and ProjectDescription.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.dataset_type: Option<String>The type of the dataset.
creation_timestamp: Option<DateTime>The Unix timestamp for the date and time that the dataset was created.
status: Option<DatasetStatus>The status for the dataset.
status_message: Option<String>The status message for the dataset.
Implementations§
source§impl DatasetMetadata
impl DatasetMetadata
sourcepub fn dataset_type(&self) -> Option<&str>
pub fn dataset_type(&self) -> Option<&str>
The type of the dataset.
sourcepub fn creation_timestamp(&self) -> Option<&DateTime>
pub fn creation_timestamp(&self) -> Option<&DateTime>
The Unix timestamp for the date and time that the dataset was created.
sourcepub fn status(&self) -> Option<&DatasetStatus>
pub fn status(&self) -> Option<&DatasetStatus>
The status for the dataset.
sourcepub fn status_message(&self) -> Option<&str>
pub fn status_message(&self) -> Option<&str>
The status message for the dataset.
source§impl DatasetMetadata
impl DatasetMetadata
sourcepub fn builder() -> DatasetMetadataBuilder
pub fn builder() -> DatasetMetadataBuilder
Creates a new builder-style object to manufacture DatasetMetadata.
Trait Implementations§
source§impl Clone for DatasetMetadata
impl Clone for DatasetMetadata
source§fn clone(&self) -> DatasetMetadata
fn clone(&self) -> DatasetMetadata
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for DatasetMetadata
impl Debug for DatasetMetadata
source§impl PartialEq for DatasetMetadata
impl PartialEq for DatasetMetadata
source§fn eq(&self, other: &DatasetMetadata) -> bool
fn eq(&self, other: &DatasetMetadata) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DatasetMetadata
Auto Trait Implementations§
impl Freeze for DatasetMetadata
impl RefUnwindSafe for DatasetMetadata
impl Send for DatasetMetadata
impl Sync for DatasetMetadata
impl Unpin for DatasetMetadata
impl UnwindSafe for DatasetMetadata
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
Mutably borrows from an owned value. Read more
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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.