pub trait Runnable {
type Output;
// Required method
fn run<'async_trait, S>(
self,
storage: S,
) -> Pin<Box<dyn Future<Output = Self::Output> + Send + 'async_trait>>
where S: Storage + Clone + Send + Sync + 'static + 'async_trait,
Self: 'async_trait;
}
Required Associated Types§
Required Methods§
fn run<'async_trait, S>( self, storage: S, ) -> Pin<Box<dyn Future<Output = Self::Output> + Send + 'async_trait>>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.