#[non_exhaustive]pub struct DocumentClassifierSummary {
pub document_classifier_name: Option<String>,
pub number_of_versions: Option<i32>,
pub latest_version_created_at: Option<DateTime>,
pub latest_version_name: Option<String>,
pub latest_version_status: Option<ModelStatus>,
}Expand description
Describes information about a document classifier and its versions.
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.document_classifier_name: Option<String>The name that you assigned the document classifier.
number_of_versions: Option<i32>The number of versions you created.
latest_version_created_at: Option<DateTime>The time that the latest document classifier version was submitted for processing.
latest_version_name: Option<String>The version name you assigned to the latest document classifier version.
latest_version_status: Option<ModelStatus>Provides the status of the latest document classifier version.
Implementations
sourceimpl DocumentClassifierSummary
impl DocumentClassifierSummary
sourcepub fn document_classifier_name(&self) -> Option<&str>
pub fn document_classifier_name(&self) -> Option<&str>
The name that you assigned the document classifier.
sourcepub fn number_of_versions(&self) -> Option<i32>
pub fn number_of_versions(&self) -> Option<i32>
The number of versions you created.
sourcepub fn latest_version_created_at(&self) -> Option<&DateTime>
pub fn latest_version_created_at(&self) -> Option<&DateTime>
The time that the latest document classifier version was submitted for processing.
sourcepub fn latest_version_name(&self) -> Option<&str>
pub fn latest_version_name(&self) -> Option<&str>
The version name you assigned to the latest document classifier version.
sourcepub fn latest_version_status(&self) -> Option<&ModelStatus>
pub fn latest_version_status(&self) -> Option<&ModelStatus>
Provides the status of the latest document classifier version.
sourceimpl DocumentClassifierSummary
impl DocumentClassifierSummary
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DocumentClassifierSummary
Trait Implementations
sourceimpl Clone for DocumentClassifierSummary
impl Clone for DocumentClassifierSummary
sourcefn clone(&self) -> DocumentClassifierSummary
fn clone(&self) -> DocumentClassifierSummary
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 more
sourceimpl Debug for DocumentClassifierSummary
impl Debug for DocumentClassifierSummary
sourceimpl PartialEq<DocumentClassifierSummary> for DocumentClassifierSummary
impl PartialEq<DocumentClassifierSummary> for DocumentClassifierSummary
sourcefn eq(&self, other: &DocumentClassifierSummary) -> bool
fn eq(&self, other: &DocumentClassifierSummary) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &DocumentClassifierSummary) -> bool
fn ne(&self, other: &DocumentClassifierSummary) -> bool
This method tests for !=.
impl StructuralPartialEq for DocumentClassifierSummary
Auto Trait Implementations
impl RefUnwindSafe for DocumentClassifierSummary
impl Send for DocumentClassifierSummary
impl Sync for DocumentClassifierSummary
impl Unpin for DocumentClassifierSummary
impl UnwindSafe for DocumentClassifierSummary
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more