Struct aws_sdk_rekognition::model::ProjectDescription
source · [−]#[non_exhaustive]pub struct ProjectDescription { /* private fields */ }Expand description
A description of an Amazon Rekognition Custom Labels project. For more information, see DescribeProjects.
Implementations
sourceimpl ProjectDescription
impl ProjectDescription
sourcepub fn project_arn(&self) -> Option<&str>
pub fn project_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the project.
sourcepub fn creation_timestamp(&self) -> Option<&DateTime>
pub fn creation_timestamp(&self) -> Option<&DateTime>
The Unix timestamp for the date and time that the project was created.
sourcepub fn status(&self) -> Option<&ProjectStatus>
pub fn status(&self) -> Option<&ProjectStatus>
The current status of the project.
sourcepub fn datasets(&self) -> Option<&[DatasetMetadata]>
pub fn datasets(&self) -> Option<&[DatasetMetadata]>
Information about the training and test datasets in the project.
sourceimpl ProjectDescription
impl ProjectDescription
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ProjectDescription.
Trait Implementations
sourceimpl Clone for ProjectDescription
impl Clone for ProjectDescription
sourcefn clone(&self) -> ProjectDescription
fn clone(&self) -> ProjectDescription
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for ProjectDescription
impl Debug for ProjectDescription
sourceimpl PartialEq<ProjectDescription> for ProjectDescription
impl PartialEq<ProjectDescription> for ProjectDescription
sourcefn eq(&self, other: &ProjectDescription) -> bool
fn eq(&self, other: &ProjectDescription) -> bool
impl StructuralPartialEq for ProjectDescription
Auto Trait Implementations
impl RefUnwindSafe for ProjectDescription
impl Send for ProjectDescription
impl Sync for ProjectDescription
impl Unpin for ProjectDescription
impl UnwindSafe for ProjectDescription
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more