pub struct RunResults {
pub run_id: i64,
pub status: String,
pub result: Value,
pub extra: Extra,
}Expand description
GET /v1/runs/:id/results → {run_id, status, result}.
Fields§
§run_id: i64§status: String§result: ValueThe run’s raw result_data JSON (null when the run produced none).
extra: ExtraTrait Implementations§
Source§impl Clone for RunResults
impl Clone for RunResults
Source§fn clone(&self) -> RunResults
fn clone(&self) -> RunResults
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 RunResults
impl Debug for RunResults
Source§impl Default for RunResults
impl Default for RunResults
Source§fn default() -> RunResults
fn default() -> RunResults
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RunResultswhere
RunResults: Default,
impl<'de> Deserialize<'de> for RunResultswhere
RunResults: Default,
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 RunResults
impl RefUnwindSafe for RunResults
impl Send for RunResults
impl Sync for RunResults
impl Unpin for RunResults
impl UnsafeUnpin for RunResults
impl UnwindSafe for RunResults
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