pub struct RunEntry {
pub job_id: JobId,
pub run_id: String,
pub started_ms: u64,
pub finished_ms: Option<u64>,
pub status: RunStatus,
pub error: Option<String>,
}Expand description
Run history entry.
Fields§
§job_id: JobId§run_id: String§started_ms: u64§finished_ms: Option<u64>§status: RunStatus§error: Option<String>Trait Implementations§
Source§impl<'de> Deserialize<'de> for RunEntry
impl<'de> Deserialize<'de> for RunEntry
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 RunEntry
impl RefUnwindSafe for RunEntry
impl Send for RunEntry
impl Sync for RunEntry
impl Unpin for RunEntry
impl UnsafeUnpin for RunEntry
impl UnwindSafe for RunEntry
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