pub struct ChildWorkflowAvroResult {
pub parent: WorkflowIdentity,
pub child: WorkflowIdentity,
pub child_workflow_type: Option<String>,
pub result: AvroValue,
}Expand description
Lossless successful child result for fixed Avro Value workflows.
Fields§
§parent: WorkflowIdentity§child: WorkflowIdentity§child_workflow_type: Option<String>§result: AvroValueTrait Implementations§
Source§impl Clone for ChildWorkflowAvroResult
impl Clone for ChildWorkflowAvroResult
Source§fn clone(&self) -> ChildWorkflowAvroResult
fn clone(&self) -> ChildWorkflowAvroResult
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 ChildWorkflowAvroResult
impl Debug for ChildWorkflowAvroResult
Source§impl PartialEq for ChildWorkflowAvroResult
impl PartialEq for ChildWorkflowAvroResult
impl StructuralPartialEq for ChildWorkflowAvroResult
Auto Trait Implementations§
impl Freeze for ChildWorkflowAvroResult
impl RefUnwindSafe for ChildWorkflowAvroResult
impl Send for ChildWorkflowAvroResult
impl Sync for ChildWorkflowAvroResult
impl Unpin for ChildWorkflowAvroResult
impl UnsafeUnpin for ChildWorkflowAvroResult
impl UnwindSafe for ChildWorkflowAvroResult
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