Trait crb_runtime::runtime::StandaloneRuntime
source · pub trait StandaloneRuntime<T> {
// Required methods
fn new(input: T, label: Label) -> Self;
fn run<'async_trait>(
self,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>
where Self: 'async_trait;
}Expand description
A runtime that can be executed as a standalone activity.
Required Methods§
Object Safety§
This trait is not object safe.