pub trait ContextErased: Send + Sync {
// Required method
fn run_erased(
&self,
parmas: &RuntimeParams,
) -> Result<Box<dyn Captured>, CoreError>;
}Expand description
Engine-facing trait (object-safe, heterogenous)
pub trait ContextErased: Send + Sync {
// Required method
fn run_erased(
&self,
parmas: &RuntimeParams,
) -> Result<Box<dyn Captured>, CoreError>;
}Engine-facing trait (object-safe, heterogenous)