Unbounded

Struct Unbounded 

Source
pub struct Unbounded { /* private fields */ }
Expand description

An unbounded channels-based transport for connecting a broker and a client in the same process.

Trait Implementations§

Source§

impl AsyncTransport for Unbounded

Source§

type Error = Disconnected

Error type when sending or receiving messages.
Source§

fn receive_poll( self: Pin<&mut Self>, cx: &mut Context<'_>, ) -> Poll<Result<Message, Disconnected>>

Attempts to receive the next message.
Source§

fn send_poll_ready( self: Pin<&mut Self>, cx: &mut Context<'_>, ) -> Poll<Result<(), Disconnected>>

Prepares the transport for sending a message. Read more
Source§

fn send_start(self: Pin<&mut Self>, msg: Message) -> Result<(), Disconnected>

Begins sending a message. Read more
Source§

fn send_poll_flush( self: Pin<&mut Self>, cx: &mut Context<'_>, ) -> Poll<Result<(), Disconnected>>

Attempts to flush the transport. Read more
Source§

impl Debug for Unbounded

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

§

impl<T> Any for T
where T: 'static + ?Sized,

§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> AsyncTransportExt for T
where T: AsyncTransport,

Source§

fn receive(&mut self) -> Receive<'_, Self>
where Self: Unpin,

Source§

fn send(&mut self, msg: impl Into<Message>) -> Send<'_, Self>
where Self: Unpin,

Source§

fn flush(&mut self) -> Flush<'_, Self>
where Self: Unpin,

Source§

fn send_and_flush(&mut self, msg: impl Into<Message>) -> SendFlush<'_, Self>
where Self: Unpin,

Source§

fn receive_poll_unpin( &mut self, cx: &mut Context<'_>, ) -> Poll<Result<Message, Self::Error>>
where Self: Unpin,

Source§

fn send_poll_ready_unpin( &mut self, cx: &mut Context<'_>, ) -> Poll<Result<(), Self::Error>>
where Self: Unpin,

Source§

fn send_start_unpin( &mut self, msg: impl Into<Message>, ) -> Result<(), Self::Error>
where Self: Unpin,

Source§

fn send_poll_flush_unpin( &mut self, cx: &mut Context<'_>, ) -> Poll<Result<(), Self::Error>>
where Self: Unpin,

Source§

fn map_err<F, E>(self, f: F) -> MapError<Self, F>
where Self: Sized, F: FnMut(Self::Error) -> E,

Source§

fn boxed<'a>(self) -> BoxedTransport<'a, Self::Error>
where Self: Sized + Send + 'a,

Source§

fn buffered(self) -> Buffered<Self>
where Self: Sized,

§

impl<T> Borrow<T> for T
where T: ?Sized,

§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
§

impl<T> BorrowMut<T> for T
where T: ?Sized,

§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<T> From<T> for T

§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T, U> Into<U> for T
where U: From<T>,

§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.