Struct amadeus_core::par_sink::AsyncTuple7[][src]

pub struct AsyncTuple7<Input, C0, C1, C2, C3, C4, C5, C6> { /* fields omitted */ }

Trait Implementations

impl<Input, C0, C1, C2, C3, C4, C5, C6> PinnedDrop for AsyncTuple7<Input, C0, C1, C2, C3, C4, C5, C6>[src]

unsafe fn drop(self: Pin<&mut Self>)[src]

impl<Input, C0: Pipe<Input>, C1: Pipe<Input>, C2: Pipe<Input>, C3: Pipe<Input>, C4: Pipe<Input>, C5: Pipe<Input>, C6: Pipe<Input>> Pipe<Input> for AsyncTuple7<Input, C0, C1, C2, C3, C4, C5, C6> where
    Input: Copy
[src]

type Output = Sum7<C0::Output, C1::Output, C2::Output, C3::Output, C4::Output, C5::Output, C6::Output>

fn poll_next(
    self: Pin<&mut Self>,
    cx: &mut Context<'_>,
    stream: Pin<&mut impl Stream<Item = Input>>
) -> Poll<Option<Self::Output>>
[src]

fn pipe<P>(self, pipe: P) -> PipePipe<Self, P> where
    P: Pipe<Self::Output>,
    Self: Sized
[src]

fn sink<S>(self, sink: S) -> PipeSink<Self, S> where
    S: Sink<Self::Output>,
    Self: Sized
[src]

fn filter<F>(self, f: F) -> Filter<Self, F> where
    F: FnMut(&Self::Output) -> bool,
    Self: Sized
[src]

fn flat_map<F, R>(self, f: F) -> FlatMap<Self, F, R> where
    F: FnMut(Self::Output) -> R,
    R: Stream,
    Self: Sized
[src]

fn flatten(self) -> Flatten<Self, Self::Output> where
    Self::Output: Stream,
    Self: Sized
[src]

fn map<F, R>(self, f: F) -> Map<Self, F> where
    F: FnMut(Self::Output) -> R,
    Self: Sized
[src]

impl<'pin, Input, C0, C1, C2, C3, C4, C5, C6> Unpin for AsyncTuple7<Input, C0, C1, C2, C3, C4, C5, C6> where
    __AsyncTuple7<'pin, Input, C0, C1, C2, C3, C4, C5, C6>: Unpin
[src]

impl<Input, C0, C1, C2, C3, C4, C5, C6> UnsafeUnpin for AsyncTuple7<Input, C0, C1, C2, C3, C4, C5, C6>[src]

Auto Trait Implementations

impl<Input, C0, C1, C2, C3, C4, C5, C6> RefUnwindSafe for AsyncTuple7<Input, C0, C1, C2, C3, C4, C5, C6> where
    C0: RefUnwindSafe,
    C1: RefUnwindSafe,
    C2: RefUnwindSafe,
    C3: RefUnwindSafe,
    C4: RefUnwindSafe,
    C5: RefUnwindSafe,
    C6: RefUnwindSafe,
    Input: RefUnwindSafe

impl<Input, C0, C1, C2, C3, C4, C5, C6> Send for AsyncTuple7<Input, C0, C1, C2, C3, C4, C5, C6> where
    C0: Send,
    C1: Send,
    C2: Send,
    C3: Send,
    C4: Send,
    C5: Send,
    C6: Send,
    Input: Send

impl<Input, C0, C1, C2, C3, C4, C5, C6> Sync for AsyncTuple7<Input, C0, C1, C2, C3, C4, C5, C6> where
    C0: Sync,
    C1: Sync,
    C2: Sync,
    C3: Sync,
    C4: Sync,
    C5: Sync,
    C6: Sync,
    Input: Sync

impl<Input, C0, C1, C2, C3, C4, C5, C6> UnwindSafe for AsyncTuple7<Input, C0, C1, C2, C3, C4, C5, C6> where
    C0: UnwindSafe,
    C1: UnwindSafe,
    C2: UnwindSafe,
    C3: UnwindSafe,
    C4: UnwindSafe,
    C5: UnwindSafe,
    C6: UnwindSafe,
    Input: UnwindSafe

Blanket Implementations

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

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

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

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

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

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

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

pub fn from(t: T) -> T[src]

Performs the conversion.

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

pub fn into(self) -> U[src]

Performs the conversion.

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.

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

Performs the conversion.

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.

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

Performs the conversion.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

pub fn vzip(self) -> V