pub struct Model {Show 14 fields
pub algorithm: Option<String>,
pub model_group_id: Option<String>,
pub model_content_hash_value: Option<String>,
pub total_chunks: Option<u32>,
pub last_registered_time: Option<u32>,
pub model_state: String,
pub is_hidden: Option<bool>,
pub last_updated_time: Option<u32>,
pub name: Option<String>,
pub model_version: Option<String>,
pub model_content_size_in_bytes: Option<u32>,
pub model_format: Option<String>,
pub created_time: Option<u32>,
pub model_config: Option<ModelConfig>,
}Fields§
§algorithm: Option<String>The algorithm.
model_group_id: Option<String>The model group ID.
model_content_hash_value: Option<String>The model content hash value.
total_chunks: Option<u32>The total chunks.
last_registered_time: Option<u32>The last registered time.
model_state: StringThe model state.
Whether the model is hidden.
last_updated_time: Option<u32>The last updated time.
name: Option<String>The model name.
model_version: Option<String>The model version.
model_content_size_in_bytes: Option<u32>The model content size in bytes.
model_format: Option<String>§created_time: Option<u32>The created time.
model_config: Option<ModelConfig>Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Model
impl<'de> Deserialize<'de> for Model
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 Model
Auto Trait Implementations§
impl Freeze for Model
impl RefUnwindSafe for Model
impl Send for Model
impl Sync for Model
impl Unpin for Model
impl UnsafeUnpin for Model
impl UnwindSafe for Model
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