Struct aws_sdk_sagemaker::types::AlgorithmStatusItem
source · #[non_exhaustive]pub struct AlgorithmStatusItem { /* private fields */ }
Expand description
Represents the overall status of an algorithm.
Implementations§
source§impl AlgorithmStatusItem
impl AlgorithmStatusItem
sourcepub fn name(&self) -> Option<&str>
pub fn name(&self) -> Option<&str>
The name of the algorithm for which the overall status is being reported.
sourcepub fn status(&self) -> Option<&DetailedAlgorithmStatus>
pub fn status(&self) -> Option<&DetailedAlgorithmStatus>
The current status.
sourcepub fn failure_reason(&self) -> Option<&str>
pub fn failure_reason(&self) -> Option<&str>
if the overall status is Failed
, the reason for the failure.
source§impl AlgorithmStatusItem
impl AlgorithmStatusItem
sourcepub fn builder() -> AlgorithmStatusItemBuilder
pub fn builder() -> AlgorithmStatusItemBuilder
Creates a new builder-style object to manufacture AlgorithmStatusItem
.
Trait Implementations§
source§impl Clone for AlgorithmStatusItem
impl Clone for AlgorithmStatusItem
source§fn clone(&self) -> AlgorithmStatusItem
fn clone(&self) -> AlgorithmStatusItem
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 AlgorithmStatusItem
impl Debug for AlgorithmStatusItem
source§impl PartialEq<AlgorithmStatusItem> for AlgorithmStatusItem
impl PartialEq<AlgorithmStatusItem> for AlgorithmStatusItem
source§fn eq(&self, other: &AlgorithmStatusItem) -> bool
fn eq(&self, other: &AlgorithmStatusItem) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AlgorithmStatusItem
Auto Trait Implementations§
impl RefUnwindSafe for AlgorithmStatusItem
impl Send for AlgorithmStatusItem
impl Sync for AlgorithmStatusItem
impl Unpin for AlgorithmStatusItem
impl UnwindSafe for AlgorithmStatusItem
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