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