pub struct Connect<P, F> { /* private fields */ }Trait Implementations§
Source§impl<NXT, F, L> Linkable for Connect<L, F>
 
impl<NXT, F, L> Linkable for Connect<L, F>
type OUT = NXT
fn then_async<F, FUT, NXT>(self, f: F) -> AsyncConnect<Self, F>
fn then_async_result<F, FUT, NXT>(self, f: F) -> AsyncConnect<Self, ErrorFuc<F>>
fn then<F, NXT>(self, f: F) -> Connect<Self, F>
fn then_result<F, NXT>(self, f: F) -> Connect<Self, ErrorFuc<F>>
Source§impl<NXT, F, P> Linkable for Connect<P, ErrorFuc<F>>
 
impl<NXT, F, P> Linkable for Connect<P, ErrorFuc<F>>
type OUT = NXT
fn then_async<F, FUT, NXT>(self, f: F) -> AsyncConnect<Self, F>
fn then_async_result<F, FUT, NXT>(self, f: F) -> AsyncConnect<Self, ErrorFuc<F>>
fn then<F, NXT>(self, f: F) -> Connect<Self, F>
fn then_result<F, NXT>(self, f: F) -> Connect<Self, ErrorFuc<F>>
Auto Trait Implementations§
impl<P, F> Freeze for Connect<P, F>
impl<P, F> RefUnwindSafe for Connect<P, F>where
    P: RefUnwindSafe,
    F: RefUnwindSafe,
impl<P, F> Send for Connect<P, F>
impl<P, F> Sync for Connect<P, F>
impl<P, F> Unpin for Connect<P, F>
impl<P, F> UnwindSafe for Connect<P, F>where
    P: UnwindSafe,
    F: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more