Trait DictionaryKeysIteratorClientSender

Source
pub trait DictionaryKeysIteratorClientSender {
    type Transport: Transport;

    // Required method
    fn get_next(
        &self,
    ) -> Result<ResponseFuture<'_, Self::Transport, GetNext>, EncodeError>;
}
Expand description

A helper trait for the DictionaryKeysIterator client sender.

Required Associated Types§

Source

type Transport: Transport

Required Methods§

Source

fn get_next( &self, ) -> Result<ResponseFuture<'_, Self::Transport, GetNext>, EncodeError>

Implementations on Foreign Types§

Source§

impl<___T> DictionaryKeysIteratorClientSender for ClientSender<___T, DictionaryKeysIterator>
where ___T: Transport,

Source§

type Transport = ___T

Source§

fn get_next( &self, ) -> Result<ResponseFuture<'_, Self::Transport, GetNext>, EncodeError>

Implementors§