pub struct ChildWorkflowResult {
pub parent: WorkflowIdentity,
pub child: WorkflowIdentity,
pub child_workflow_type: Option<String>,
pub result: Value,
}Expand description
A successful child result together with its durable parent-child identity.
Fields§
§parent: WorkflowIdentity§child: WorkflowIdentity§child_workflow_type: Option<String>§result: ValueTrait Implementations§
Source§impl Clone for ChildWorkflowResult
impl Clone for ChildWorkflowResult
Source§fn clone(&self) -> ChildWorkflowResult
fn clone(&self) -> ChildWorkflowResult
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 ChildWorkflowResult
impl Debug for ChildWorkflowResult
Source§impl PartialEq for ChildWorkflowResult
impl PartialEq for ChildWorkflowResult
impl StructuralPartialEq for ChildWorkflowResult
Auto Trait Implementations§
impl Freeze for ChildWorkflowResult
impl RefUnwindSafe for ChildWorkflowResult
impl Send for ChildWorkflowResult
impl Sync for ChildWorkflowResult
impl Unpin for ChildWorkflowResult
impl UnsafeUnpin for ChildWorkflowResult
impl UnwindSafe for ChildWorkflowResult
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