struct CloseRunInlineRequest {
exit_code: Option<i32>,
run_status: &'static str,
finished_at: Option<String>,
data_source: &'static str,
data_csv: String,
}Expand description
Payload for RunFinishInline: remaining samples sent as a raw CSV string. Used when no S3 batches were uploaded (short runs or all S3 failures).
Fields§
§exit_code: Option<i32>§run_status: &'static str§finished_at: Option<String>Exact finish time in ISO 8601 UTC format, e.g. “2026-04-03T12:00:00Z”.
data_source: &'static strDiscriminator value – must be exactly “inline”.
data_csv: StringRaw CSV string – NOT base64-encoded. The API schema type is plain string.
Trait Implementations§
Source§impl Debug for CloseRunInlineRequest
impl Debug for CloseRunInlineRequest
Auto Trait Implementations§
impl Freeze for CloseRunInlineRequest
impl RefUnwindSafe for CloseRunInlineRequest
impl Send for CloseRunInlineRequest
impl Sync for CloseRunInlineRequest
impl Unpin for CloseRunInlineRequest
impl UnsafeUnpin for CloseRunInlineRequest
impl UnwindSafe for CloseRunInlineRequest
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