Struct aws_sdk_comprehend::operation::describe_document_classification_job::DescribeDocumentClassificationJobOutput
source · #[non_exhaustive]pub struct DescribeDocumentClassificationJobOutput {
pub document_classification_job_properties: Option<DocumentClassificationJobProperties>,
/* private fields */
}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.document_classification_job_properties: Option<DocumentClassificationJobProperties>An object that describes the properties associated with the document classification job.
Implementations§
source§impl DescribeDocumentClassificationJobOutput
impl DescribeDocumentClassificationJobOutput
sourcepub fn document_classification_job_properties(
&self
) -> Option<&DocumentClassificationJobProperties>
pub fn document_classification_job_properties( &self ) -> Option<&DocumentClassificationJobProperties>
An object that describes the properties associated with the document classification job.
source§impl DescribeDocumentClassificationJobOutput
impl DescribeDocumentClassificationJobOutput
sourcepub fn builder() -> DescribeDocumentClassificationJobOutputBuilder
pub fn builder() -> DescribeDocumentClassificationJobOutputBuilder
Creates a new builder-style object to manufacture DescribeDocumentClassificationJobOutput.
Trait Implementations§
source§impl Clone for DescribeDocumentClassificationJobOutput
impl Clone for DescribeDocumentClassificationJobOutput
source§fn clone(&self) -> DescribeDocumentClassificationJobOutput
fn clone(&self) -> DescribeDocumentClassificationJobOutput
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 PartialEq<DescribeDocumentClassificationJobOutput> for DescribeDocumentClassificationJobOutput
impl PartialEq<DescribeDocumentClassificationJobOutput> for DescribeDocumentClassificationJobOutput
source§fn eq(&self, other: &DescribeDocumentClassificationJobOutput) -> bool
fn eq(&self, other: &DescribeDocumentClassificationJobOutput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl RequestId for DescribeDocumentClassificationJobOutput
impl RequestId for DescribeDocumentClassificationJobOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None if the service could not be reached.impl StructuralPartialEq for DescribeDocumentClassificationJobOutput
Auto Trait Implementations§
impl RefUnwindSafe for DescribeDocumentClassificationJobOutput
impl Send for DescribeDocumentClassificationJobOutput
impl Sync for DescribeDocumentClassificationJobOutput
impl Unpin for DescribeDocumentClassificationJobOutput
impl UnwindSafe for DescribeDocumentClassificationJobOutput
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