pub struct IteratorGetResponder { /* private fields */ }
Implementations§
source§impl IteratorGetResponder
impl IteratorGetResponder
sourcepub fn send(
self,
entries: &mut dyn ExactSizeIterator<Item = &str>
) -> Result<(), Error>
pub fn send( self, entries: &mut dyn ExactSizeIterator<Item = &str> ) -> Result<(), Error>
Sends a response to the FIDL transaction.
Sets the channel to shutdown if an error occurs.
sourcepub fn send_no_shutdown_on_err(
self,
entries: &mut dyn ExactSizeIterator<Item = &str>
) -> Result<(), Error>
pub fn send_no_shutdown_on_err( self, entries: &mut dyn ExactSizeIterator<Item = &str> ) -> Result<(), Error>
Similar to “send” but does not shutdown the channel if an error occurs.
Trait Implementations§
source§impl Debug for IteratorGetResponder
impl Debug for IteratorGetResponder
source§impl Drop for IteratorGetResponder
impl Drop for IteratorGetResponder
Set the the channel to be shutdown (see IteratorControlHandle::shutdown
)
if the responder is dropped without sending a response, so that the client
doesn’t hang. To prevent this behavior, call drop_without_shutdown
.
source§impl Responder for IteratorGetResponder
impl Responder for IteratorGetResponder
§type ControlHandle = IteratorControlHandle
type ControlHandle = IteratorControlHandle
The control handle for this protocol.
source§fn control_handle(&self) -> &IteratorControlHandle
fn control_handle(&self) -> &IteratorControlHandle
Returns the
ControlHandle
for this protocol.source§fn drop_without_shutdown(self)
fn drop_without_shutdown(self)
Drops the responder without setting the channel to shutdown. Read more