Trait ExtendedAttributeIteratorClientSender

Source
pub trait ExtendedAttributeIteratorClientSender {
    type Transport: Transport;

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

A helper trait for the ExtendedAttributeIterator client sender.

Required Associated Types§

Source

type Transport: Transport

Required Methods§

Source

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

Get the next chunk of extended attribute names. If this is the last chunk, last will be true, and the channel will be closed after the call.

Implementations on Foreign Types§

Source§

impl<___T> ExtendedAttributeIteratorClientSender for ClientSender<___T, ExtendedAttributeIterator>
where ___T: Transport,

Source§

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

Get the next chunk of extended attribute names. If this is the last chunk, last will be true, and the channel will be closed after the call.

Source§

type Transport = ___T

Implementors§