pub struct RunRecord {Show 14 fields
pub id: String,
pub request_id: String,
pub status: String,
pub tier: String,
pub runner: Option<String>,
pub dataset_csv: Option<String>,
pub code_path: Option<String>,
pub code_sha256: Option<String>,
pub command: Vec<String>,
pub exit_code: Option<i32>,
pub error: Option<String>,
pub stdout_path: String,
pub stderr_path: String,
pub created_at: String,
}Fields§
§id: String§request_id: String§status: String§tier: String§runner: Option<String>§dataset_csv: Option<String>§code_path: Option<String>§code_sha256: Option<String>§command: Vec<String>§exit_code: Option<i32>§error: Option<String>§stdout_path: String§stderr_path: String§created_at: StringTrait Implementations§
Source§impl<'de> Deserialize<'de> for RunRecord
impl<'de> Deserialize<'de> for RunRecord
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 Eq for RunRecord
impl StructuralPartialEq for RunRecord
Auto Trait Implementations§
impl Freeze for RunRecord
impl RefUnwindSafe for RunRecord
impl Send for RunRecord
impl Sync for RunRecord
impl Unpin for RunRecord
impl UnsafeUnpin for RunRecord
impl UnwindSafe for RunRecord
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.