pub trait RuleIteratorProxyInterface: Send + Sync {
    type NextResponseFut: Future<Output = Result<Vec<Rule>, Error>> + Send;

    // Required method
    fn next(&self) -> Self::NextResponseFut;
}

Required Associated Types§

source

type NextResponseFut: Future<Output = Result<Vec<Rule>, Error>> + Send

Required Methods§

source

fn next(&self) -> Self::NextResponseFut

Implementors§