Trait linera_client::storage::Runnable
source · 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>>
Object Safety§
This trait is not object safe.