Struct dialectic::Over[][src]

pub struct Over<Tx, Rx, T, Fut> where
    Fut: Future<Output = T>, 
{ /* fields omitted */ }

The future returned by Session::over (see its documentation for details).

Trait Implementations

impl<Tx: Debug, Rx: Debug, T: Debug, Fut: Debug> Debug for Over<Tx, Rx, T, Fut> where
    Fut: Future<Output = T>, 
[src]

impl<Tx, Rx, T, Fut> Future for Over<Tx, Rx, T, Fut> where
    Fut: Future<Output = T>, 
[src]

type Output = (T, Result<(Tx, Rx), SessionIncomplete<Tx, Rx>>)

The type of value produced on completion.

impl<'pin, Tx, Rx, T, Fut> Unpin for Over<Tx, Rx, T, Fut> where
    Fut: Future<Output = T>,
    __Over<'pin, Tx, Rx, T, Fut>: Unpin
[src]

Auto Trait Implementations

impl<Tx, Rx, T, Fut> RefUnwindSafe for Over<Tx, Rx, T, Fut> where
    Fut: RefUnwindSafe

impl<Tx, Rx, T, Fut> Send for Over<Tx, Rx, T, Fut> where
    Fut: Send,
    Rx: Send,
    Tx: Send

impl<Tx, Rx, T, Fut> Sync for Over<Tx, Rx, T, Fut> where
    Fut: Sync,
    Rx: Send,
    Tx: Send

impl<Tx, Rx, T, Fut> UnwindSafe for Over<Tx, Rx, T, Fut> where
    Fut: UnwindSafe

Blanket Implementations

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

impl<'a, T, S> As<'a, Val, T> for S where
    S: Into<T>, 
[src]

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

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

impl<'a, T> By<'a, Mut> for T where
    T: 'a, 
[src]

type Type = &'a mut T

The type of Self when called by Convention.

impl<'a, T> By<'a, Ref> for T where
    T: 'a, 
[src]

type Type = &'a T

The type of Self when called by Convention.

impl<'a, T> By<'a, Val> for T[src]

type Type = T

The type of Self when called by Convention.

impl<'a, T> Convert<'a, Mut, Mut> for T where
    T: 'a, 
[src]

impl<'a, T> Convert<'a, Mut, Ref> for T where
    T: 'a, 
[src]

impl<'a, T> Convert<'a, Ref, Ref> for T where
    T: 'a, 
[src]

impl<'a, T> Convert<'a, Val, Val> for T[src]

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

impl<T> FutureExt for T where
    T: Future + ?Sized

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

impl<F> IntoFuture for F where
    F: Future
[src]

type Output = <F as Future>::Output

🔬 This is a nightly-only experimental API. (into_future)

The output that the future will produce on completion.

type Future = F

🔬 This is a nightly-only experimental API. (into_future)

Which kind of future are we turning this into?

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.