pub struct ModelPackageStatusDetails {
pub image_scan_statuses: Option<Vec<ModelPackageStatusItem>>,
pub validation_statuses: Vec<ModelPackageStatusItem>,
}
Expand description
Specifies the validation and image scan statuses of the model package.
Fields§
§image_scan_statuses: Option<Vec<ModelPackageStatusItem>>
The status of the scan of the Docker image container for the model package.
validation_statuses: Vec<ModelPackageStatusItem>
The validation status of the model package.
Trait Implementations§
Source§impl Clone for ModelPackageStatusDetails
impl Clone for ModelPackageStatusDetails
Source§fn clone(&self) -> ModelPackageStatusDetails
fn clone(&self) -> ModelPackageStatusDetails
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 ModelPackageStatusDetails
impl Debug for ModelPackageStatusDetails
Source§impl Default for ModelPackageStatusDetails
impl Default for ModelPackageStatusDetails
Source§fn default() -> ModelPackageStatusDetails
fn default() -> ModelPackageStatusDetails
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ModelPackageStatusDetails
impl<'de> Deserialize<'de> for ModelPackageStatusDetails
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
impl StructuralPartialEq for ModelPackageStatusDetails
Auto Trait Implementations§
impl Freeze for ModelPackageStatusDetails
impl RefUnwindSafe for ModelPackageStatusDetails
impl Send for ModelPackageStatusDetails
impl Sync for ModelPackageStatusDetails
impl Unpin for ModelPackageStatusDetails
impl UnwindSafe for ModelPackageStatusDetails
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