Struct async_pipeline::Start
source · [−]pub struct Start<T> { /* private fields */ }
Trait Implementations
sourceimpl<IN: Send + Sync> Linkable for Start<IN>
impl<IN: Send + Sync> Linkable for Start<IN>
type OUT = IN
fn then_async<F, FUT, NXT>(self, f: F) -> AsyncConnect<Self, F>where
F: Fn(Self::OUT) -> FUT,
FUT: Future<Output = NXT> + Send + Sync,
Self: Sized,
fn then_async_result<F, FUT, NXT>(self, f: F) -> AsyncConnect<Self, ErrorFuc<F>>where
F: Fn(Self::OUT) -> FUT,
FUT: Future<Output = Result<NXT, Error>> + Send + Sync,
Self: Sized,
fn then<F, NXT>(self, f: F) -> Connect<Self, F>where
F: Fn(Self::OUT) -> NXT,
Self: Sized,
fn then_result<F, NXT>(self, f: F) -> Connect<Self, ErrorFuc<F>>where
F: Fn(Self::OUT) -> Result<NXT, Error>,
Self: Sized,
Auto Trait Implementations
impl<T> RefUnwindSafe for Start<T>where
T: RefUnwindSafe,
impl<T> Send for Start<T>where
T: Send,
impl<T> Sync for Start<T>where
T: Sync,
impl<T> Unpin for Start<T>where
T: Unpin,
impl<T> UnwindSafe for Start<T>where
T: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more