pub struct ExecutionChildSummary {
pub id: String,
pub parent_node_id: Option<String>,
pub status: String,
pub started_at: Option<String>,
pub finished_at: Option<String>,
pub script_name: String,
}Expand description
Summary of a child execution spawned via spawn_child_execution (#1054).
Returned by GET /executions/{id}/children. For v1 the parent-linkage
columns are typically NULL; this type is forward-looking.
Fields§
§id: String§parent_node_id: Option<String>§status: String§started_at: Option<String>§finished_at: Option<String>§script_name: StringTrait Implementations§
Source§impl Clone for ExecutionChildSummary
impl Clone for ExecutionChildSummary
Source§fn clone(&self) -> ExecutionChildSummary
fn clone(&self) -> ExecutionChildSummary
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 ExecutionChildSummary
impl Debug for ExecutionChildSummary
Source§impl<'de> Deserialize<'de> for ExecutionChildSummary
impl<'de> Deserialize<'de> for ExecutionChildSummary
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 ExecutionChildSummary
impl RefUnwindSafe for ExecutionChildSummary
impl Send for ExecutionChildSummary
impl Sync for ExecutionChildSummary
impl Unpin for ExecutionChildSummary
impl UnsafeUnpin for ExecutionChildSummary
impl UnwindSafe for ExecutionChildSummary
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