pub struct ModelPackageStatusItem {
pub failure_reason: Option<String>,
pub name: String,
pub status: String,
}
Expand description
Represents the overall status of a model package.
Fields§
§failure_reason: Option<String>
if the overall status is Failed
, the reason for the failure.
name: String
The name of the model package for which the overall status is being reported.
status: String
The current status.
Trait Implementations§
Source§impl Clone for ModelPackageStatusItem
impl Clone for ModelPackageStatusItem
Source§fn clone(&self) -> ModelPackageStatusItem
fn clone(&self) -> ModelPackageStatusItem
Returns a duplicate 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 ModelPackageStatusItem
impl Debug for ModelPackageStatusItem
Source§impl Default for ModelPackageStatusItem
impl Default for ModelPackageStatusItem
Source§fn default() -> ModelPackageStatusItem
fn default() -> ModelPackageStatusItem
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ModelPackageStatusItem
impl<'de> Deserialize<'de> for ModelPackageStatusItem
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 ModelPackageStatusItem
impl PartialEq for ModelPackageStatusItem
impl StructuralPartialEq for ModelPackageStatusItem
Auto Trait Implementations§
impl Freeze for ModelPackageStatusItem
impl RefUnwindSafe for ModelPackageStatusItem
impl Send for ModelPackageStatusItem
impl Sync for ModelPackageStatusItem
impl Unpin for ModelPackageStatusItem
impl UnwindSafe for ModelPackageStatusItem
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