pub struct AlgorithmStatusItem {
pub failure_reason: Option<String>,
pub name: String,
pub status: String,
}
Expand description
Represents the overall status of an algorithm.
Fields§
§failure_reason: Option<String>
if the overall status is Failed
, the reason for the failure.
name: String
The name of the algorithm for which the overall status is being reported.
status: String
The current status.
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 Default for AlgorithmStatusItem
impl Default for AlgorithmStatusItem
Source§fn default() -> AlgorithmStatusItem
fn default() -> AlgorithmStatusItem
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AlgorithmStatusItem
impl<'de> Deserialize<'de> for AlgorithmStatusItem
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for AlgorithmStatusItem
impl PartialEq for AlgorithmStatusItem
impl StructuralPartialEq for AlgorithmStatusItem
Auto Trait Implementations§
impl Freeze for AlgorithmStatusItem
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