QueryRaw

Trait QueryRaw 

Source
pub trait QueryRaw<C: Client>: MaybeSend + MaybeSync {
    // Required method
    fn query_raw<'life0, 'life1, 'async_trait>(
        &'life0 mut self,
        client: &'life1 C,
    ) -> Pin<Box<dyn Future<Output = Result<Bytes, ApiClientError<C::Error>>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait;
}

Required Methods§

Source

fn query_raw<'life0, 'life1, 'async_trait>( &'life0 mut self, client: &'life1 C, ) -> Pin<Box<dyn Future<Output = Result<Bytes, ApiClientError<C::Error>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Implementors§

Source§

impl<E, C> QueryRaw<C> for E
where E: Endpoint, C: Client,

Source§

impl<E, C, S> QueryRaw<C> for RetryQuery<E, S>