pub struct ModelVersionResponse {
pub id: String,
pub experiment: Option<ExperimentSourceResponse>,
pub version: u32,
pub size: u64,
pub checksum: String,
pub created_by: CreatedByUserResponse,
pub created_at: String,
pub manifest: Value,
}Fields§
§id: String§experiment: Option<ExperimentSourceResponse>§version: u32§size: u64§checksum: String§created_by: CreatedByUserResponse§created_at: String§manifest: ValueTrait Implementations§
Source§impl Clone for ModelVersionResponse
impl Clone for ModelVersionResponse
Source§fn clone(&self) -> ModelVersionResponse
fn clone(&self) -> ModelVersionResponse
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 ModelVersionResponse
impl Debug for ModelVersionResponse
Source§impl<'de> Deserialize<'de> for ModelVersionResponse
impl<'de> Deserialize<'de> for ModelVersionResponse
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
Auto Trait Implementations§
impl Freeze for ModelVersionResponse
impl RefUnwindSafe for ModelVersionResponse
impl Send for ModelVersionResponse
impl Sync for ModelVersionResponse
impl Unpin for ModelVersionResponse
impl UnsafeUnpin for ModelVersionResponse
impl UnwindSafe for ModelVersionResponse
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