Trait ChildIteratorClientSender
Source pub trait ChildIteratorClientSender {
type Transport: Transport;
// Required method
fn next(
&self,
) -> Result<ResponseFuture<'_, Self::Transport, Next>, EncodeError>;
}
Expand description
A helper trait for the ChildIterator
client sender.
Advance the iterator and return the next batch of children.
Returns a vector of ChildRef
. Returns an empty vector when there are
no more children.
Advance the iterator and return the next batch of children.
Returns a vector of ChildRef
. Returns an empty vector when there are
no more children.