pub struct MapError<T, F> { /* private fields */ }Trait Implementations§
Source§impl<T, F, E> AsyncTransport for MapError<T, F>
impl<T, F, E> AsyncTransport for MapError<T, F>
Source§fn receive_poll(
self: Pin<&mut Self>,
cx: &mut Context<'_>,
) -> Poll<Result<Message, Self::Error>>
fn receive_poll( self: Pin<&mut Self>, cx: &mut Context<'_>, ) -> Poll<Result<Message, Self::Error>>
Attempts to receive the next message.
Source§fn send_poll_ready(
self: Pin<&mut Self>,
cx: &mut Context<'_>,
) -> Poll<Result<(), Self::Error>>
fn send_poll_ready( self: Pin<&mut Self>, cx: &mut Context<'_>, ) -> Poll<Result<(), Self::Error>>
Prepares the transport for sending a message. Read more
impl<'__pin, T, F> Unpin for MapError<T, F>where
PinnedFieldsOf<__Origin<'__pin, T, F>>: Unpin,
Auto Trait Implementations§
impl<T, F> Freeze for MapError<T, F>
impl<T, F> RefUnwindSafe for MapError<T, F>where
T: RefUnwindSafe,
F: RefUnwindSafe,
impl<T, F> Send for MapError<T, F>
impl<T, F> Sync for MapError<T, F>
impl<T, F> UnwindSafe for MapError<T, F>where
T: UnwindSafe,
F: UnwindSafe,
Blanket Implementations§
Source§impl<T> AsyncTransportExt for Twhere
T: AsyncTransport,
impl<T> AsyncTransportExt for Twhere
T: AsyncTransport,
fn receive(&mut self) -> Receive<'_, Self> ⓘwhere
Self: Unpin,
fn send(&mut self, msg: impl Into<Message>) -> Send<'_, Self> ⓘwhere
Self: Unpin,
fn flush(&mut self) -> Flush<'_, Self> ⓘwhere
Self: Unpin,
fn send_and_flush(&mut self, msg: impl Into<Message>) -> SendFlush<'_, Self> ⓘwhere
Self: Unpin,
fn receive_poll_unpin(
&mut self,
cx: &mut Context<'_>,
) -> Poll<Result<Message, Self::Error>>where
Self: Unpin,
fn send_poll_ready_unpin(
&mut self,
cx: &mut Context<'_>,
) -> Poll<Result<(), Self::Error>>where
Self: Unpin,
fn send_start_unpin(
&mut self,
msg: impl Into<Message>,
) -> Result<(), Self::Error>where
Self: Unpin,
fn send_poll_flush_unpin(
&mut self,
cx: &mut Context<'_>,
) -> Poll<Result<(), Self::Error>>where
Self: Unpin,
fn map_err<F, E>(self, f: F) -> MapError<Self, F>
fn boxed<'a>(self) -> BoxedTransport<'a, Self::Error>
fn buffered(self) -> Buffered<Self>where
Self: Sized,
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more