pub trait WorkflowOutboundValue: Any {
// Required methods
fn as_any(&self) -> &(dyn Any + 'static);
fn into_any(self: Box<Self>) -> Box<dyn Any>;
}Expand description
Type-erased output returned by an intercepted outbound workflow call.
Required Methods§
Implementations§
Source§impl dyn WorkflowOutboundValue
impl dyn WorkflowOutboundValue
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".