pub trait CaseIteratorProxyInterface: Send + Sync {
    type GetNextResponseFut: Future<Output = Result<Vec<Case>, Error>> + Send;

    // Required method
    fn get_next(&self) -> Self::GetNextResponseFut;
}

Required Associated Types§

source

type GetNextResponseFut: Future<Output = Result<Vec<Case>, Error>> + Send

Required Methods§

Implementors§