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;
}Expand description
A job that can be run against a high-level Storage.
Required Associated Types§
Required Methods§
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.