pub trait QueryableProxyInterface: Send + Sync {
    type QueryResponseFut: Future<Output = Result<Vec<u8>, Error>> + Send;

    // Required method
    fn query(&self) -> Self::QueryResponseFut;
}

Required Associated Types§

source

type QueryResponseFut: Future<Output = Result<Vec<u8>, Error>> + Send

Required Methods§

source

fn query(&self) -> Self::QueryResponseFut

Implementors§