pub trait WithStorage {
    // Provided method
    fn with_storage<'a, S, I>(
        &'a self,
        storage: &'a S,
        selector: I
    ) -> ApiProvider<'_, Self, KeyPoolExecutor<'_, Self, S>>
       where Self: ApiClient + Sized,
             S: KeyPoolStorage + 'static,
             I: IntoSelector<S::Key, S::Domain> { ... }
}

Provided Methods§

source

fn with_storage<'a, S, I>( &'a self, storage: &'a S, selector: I ) -> ApiProvider<'_, Self, KeyPoolExecutor<'_, Self, S>>where Self: ApiClient + Sized, S: KeyPoolStorage + 'static, I: IntoSelector<S::Key, S::Domain>,

Implementors§