[][src]Struct edelcrantz::Queue

pub struct Queue<OneWay: Msg, Request: Msg, Response: Msg> { /* fields omitted */ }

A Queue is a shared handle that can be cloned off of a Connection and used to enqueue messages even while the Connection is borrowed and/or locked in a call to advance (eg. by a task service loop).

Implementations

impl<OneWay: Msg, Request: Msg, Response: Msg> Queue<OneWay, Request, Response>[src]

pub fn enqueue_oneway(
    &self,
    oneway: OneWay
) -> impl Future<Output = Result<(), Error>> + 'static
[src]

Enqueue a OneWay message for sending.

pub fn enqueue_request(
    &self,
    req: Request
) -> impl Future<Output = Result<Response, Error>> + 'static
[src]

Enqueue a Request message for sending, and return a future that will be filled in when the response arrives.

Trait Implementations

impl<OneWay: Msg, Request: Msg, Response: Msg> Clone for Queue<OneWay, Request, Response>[src]

Auto Trait Implementations

impl<OneWay, Request, Response> !RefUnwindSafe for Queue<OneWay, Request, Response>[src]

impl<OneWay, Request, Response> Send for Queue<OneWay, Request, Response>[src]

impl<OneWay, Request, Response> Sync for Queue<OneWay, Request, Response>[src]

impl<OneWay, Request, Response> Unpin for Queue<OneWay, Request, Response>[src]

impl<OneWay, Request, Response> !UnwindSafe for Queue<OneWay, Request, Response>[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> WithSubscriber for T[src]