pub struct ChildRunSpawned {
pub parent_run_id: RunId,
pub child_run_id: RunId,
pub child_manifest_id: ArtifactId,
}Expand description
Reserved for later expansion (nested machines).
Fields§
§parent_run_id: RunIdParent run that spawned the child.
child_run_id: RunIdNewly created child run identifier.
child_manifest_id: ArtifactIdManifest artifact for the child run.
Trait Implementations§
Source§impl Clone for ChildRunSpawned
impl Clone for ChildRunSpawned
Source§fn clone(&self) -> ChildRunSpawned
fn clone(&self) -> ChildRunSpawned
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 ChildRunSpawned
impl Debug for ChildRunSpawned
Source§impl<'de> Deserialize<'de> for ChildRunSpawned
impl<'de> Deserialize<'de> for ChildRunSpawned
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 ChildRunSpawned
impl PartialEq for ChildRunSpawned
Source§impl Serialize for ChildRunSpawned
impl Serialize for ChildRunSpawned
impl Eq for ChildRunSpawned
impl StructuralPartialEq for ChildRunSpawned
Auto Trait Implementations§
impl Freeze for ChildRunSpawned
impl RefUnwindSafe for ChildRunSpawned
impl Send for ChildRunSpawned
impl Sync for ChildRunSpawned
impl Unpin for ChildRunSpawned
impl UnsafeUnpin for ChildRunSpawned
impl UnwindSafe for ChildRunSpawned
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