pub struct ModelSummary {
pub name: String,
pub version: String,
pub description: Option<String>,
pub deployed_version: Option<String>,
pub detailed_status: Status,
pub status: StatusType,
pub status_message: Option<String>,
}
Expand description
Summary of a given model returned when listing
Fields§
§name: String
§version: String
§description: Option<String>
§deployed_version: Option<String>
§detailed_status: Status
§status: StatusType
👎Deprecated since 0.14.0: Use detailed_status instead
§status_message: Option<String>
👎Deprecated since 0.14.0: Use detailed_status instead
Trait Implementations§
Source§impl Clone for ModelSummary
impl Clone for ModelSummary
Source§fn clone(&self) -> ModelSummary
fn clone(&self) -> ModelSummary
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 ModelSummary
impl Debug for ModelSummary
Source§impl<'de> Deserialize<'de> for ModelSummary
impl<'de> Deserialize<'de> for ModelSummary
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 From<ModelSummary> for ModelSummary
impl From<ModelSummary> for ModelSummary
Source§fn from(summary: ModelSummary) -> Self
fn from(summary: ModelSummary) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ModelSummary
impl RefUnwindSafe for ModelSummary
impl Send for ModelSummary
impl Sync for ModelSummary
impl Unpin for ModelSummary
impl UnwindSafe for ModelSummary
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