pub trait DictionaryEnumerateIteratorProxyInterface: Send + Sync {
type GetNextResponseFut: Future<Output = Result<DictionaryEnumerateIteratorGetNextResult, Error>> + Send;
// Required method
fn get_next(&self, start_id: u64, limit: u32) -> Self::GetNextResponseFut;
}Required Associated Types§
type GetNextResponseFut: Future<Output = Result<DictionaryEnumerateIteratorGetNextResult, Error>> + Send
Required Methods§
fn get_next(&self, start_id: u64, limit: u32) -> Self::GetNextResponseFut
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".