pub struct RunChildRecord {
pub worker_id: String,
pub worker_name: String,
pub parent_stage_id: Option<String>,
pub task: String,
pub status: String,
pub started_at: String,
pub finished_at: Option<String>,
pub run_id: Option<String>,
pub run_path: Option<String>,
pub snapshot_path: Option<String>,
pub execution: Option<RunExecutionRecord>,
}Fields§
§worker_id: String§worker_name: String§parent_stage_id: Option<String>§task: String§status: String§started_at: String§finished_at: Option<String>§run_id: Option<String>§run_path: Option<String>§snapshot_path: Option<String>§execution: Option<RunExecutionRecord>Trait Implementations§
Source§impl Clone for RunChildRecord
impl Clone for RunChildRecord
Source§fn clone(&self) -> RunChildRecord
fn clone(&self) -> RunChildRecord
Returns a duplicate of the value. Read more
1.0.0 · 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 RunChildRecord
impl Debug for RunChildRecord
Source§impl Default for RunChildRecord
impl Default for RunChildRecord
Source§fn default() -> RunChildRecord
fn default() -> RunChildRecord
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RunChildRecordwhere
RunChildRecord: Default,
impl<'de> Deserialize<'de> for RunChildRecordwhere
RunChildRecord: 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
Source§impl PartialEq for RunChildRecord
impl PartialEq for RunChildRecord
Source§impl Serialize for RunChildRecord
impl Serialize for RunChildRecord
impl Eq for RunChildRecord
impl StructuralPartialEq for RunChildRecord
Auto Trait Implementations§
impl Freeze for RunChildRecord
impl RefUnwindSafe for RunChildRecord
impl Send for RunChildRecord
impl Sync for RunChildRecord
impl Unpin for RunChildRecord
impl UnsafeUnpin for RunChildRecord
impl UnwindSafe for RunChildRecord
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,
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.