pub trait ReadOnlyLogProxyInterface: Send + Sync {
    type GetResponseFut: Future<Output = Result<DebugLog, Error>> + Send;

    // Required method
    fn get(&self) -> Self::GetResponseFut;
}

Required Associated Types§

source

type GetResponseFut: Future<Output = Result<DebugLog, Error>> + Send

Required Methods§

source

fn get(&self) -> Self::GetResponseFut

Implementors§

source§

impl ReadOnlyLogProxyInterface for ReadOnlyLogProxy

§

type GetResponseFut = QueryResponseFut<DebugLog>