pub trait DictionaryDrainIteratorProxyInterface: Send + Sync {
    type GetNextResponseFut: Future<Output = Result<DictionaryDrainIteratorGetNextResult, Error>> + Send;

    // Required method
    fn get_next(&self, start_id: u64, limit: u32) -> Self::GetNextResponseFut;
}

Required Associated Types§

Required Methods§

source

fn get_next(&self, start_id: u64, limit: u32) -> Self::GetNextResponseFut

Implementors§