pub struct UploadResponse {
pub run_id: String,
pub deduped: bool,
}Expand description
The EvalForge ingest success body: { "runId": string, "deduped": bool }. deduped is true when
the server replaced a prior run with the same (projectId, model, timestamp_file) (re-uploads are
safe / idempotent).
Fields§
§run_id: StringThe server-assigned id of the (created or replaced) run.
deduped: booltrue if this upload replaced an existing run with the same dedup key, false if newly created.
Trait Implementations§
Source§impl Clone for UploadResponse
impl Clone for UploadResponse
Source§fn clone(&self) -> UploadResponse
fn clone(&self) -> UploadResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 UploadResponse
impl Debug for UploadResponse
Source§impl<'de> Deserialize<'de> for UploadResponse
impl<'de> Deserialize<'de> for UploadResponse
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 UploadResponse
impl RefUnwindSafe for UploadResponse
impl Send for UploadResponse
impl Sync for UploadResponse
impl Unpin for UploadResponse
impl UnsafeUnpin for UploadResponse
impl UnwindSafe for UploadResponse
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