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

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

Required Associated Types§

Required Methods§

Implementors§