pub trait HasRawQueryClient {
    type RawQueryClient: Send + Sync;
    type RawQueryTxnClient<'a>: Send + Sync;

    // Required methods
    fn get_raw_query_client<'life0, 'async_trait>(
        &'life0 self
    ) -> Pin<Box<dyn Future<Output = Self::RawQueryClient> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
    fn get_raw_query_txn_client<'a, 'async_trait>(
        client: &'a mut Self::RawQueryClient
    ) -> Pin<Box<dyn Future<Output = Self::RawQueryTxnClient<'a>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'a: 'async_trait;
}

Required Associated Types§

Required Methods§

source

fn get_raw_query_client<'life0, 'async_trait>( &'life0 self ) -> Pin<Box<dyn Future<Output = Self::RawQueryClient> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

source

fn get_raw_query_txn_client<'a, 'async_trait>( client: &'a mut Self::RawQueryClient ) -> Pin<Box<dyn Future<Output = Self::RawQueryTxnClient<'a>> + Send + 'async_trait>>
where Self: 'async_trait, 'a: 'async_trait,

Object Safety§

This trait is not object safe.

Implementors§