Struct amadeus::par_sink::AsyncTuple2[][src]

pub struct AsyncTuple2<Input, C0, C1> { /* fields omitted */ }

Trait Implementations

impl<Input, C0, C1> Pipe<Input> for AsyncTuple2<Input, C0, C1> where
    Input: Copy,
    C0: Pipe<Input>,
    C1: Pipe<Input>, 
[src]

type Output = Sum2<<C0 as Pipe<Input>>::Output, <C1 as Pipe<Input>>::Output>

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

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

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

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

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

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

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

impl<'pin, Input, C0, C1> Unpin for AsyncTuple2<Input, C0, C1> where
    __AsyncTuple2<'pin, Input, C0, C1>: Unpin
[src]

impl<Input, C0, C1> UnsafeUnpin for AsyncTuple2<Input, C0, C1>[src]

Auto Trait Implementations

impl<Input, C0, C1> RefUnwindSafe for AsyncTuple2<Input, C0, C1> where
    C0: RefUnwindSafe,
    C1: RefUnwindSafe,
    Input: RefUnwindSafe

impl<Input, C0, C1> Send for AsyncTuple2<Input, C0, C1> where
    C0: Send,
    C1: Send,
    Input: Send

impl<Input, C0, C1> Sync for AsyncTuple2<Input, C0, C1> where
    C0: Sync,
    C1: Sync,
    Input: Sync

impl<Input, C0, C1> UnwindSafe for AsyncTuple2<Input, C0, C1> where
    C0: UnwindSafe,
    C1: 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<A, B> Downcast<A> for B where
    A: DowncastFrom<B>, 
[src]

pub fn downcast(self) -> Result<A, DowncastError>[src]

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

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

Performs the conversion.

impl<T> Instrument for T[src]

fn instrument(self, span: Span) -> Instrumented<Self>[src]

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

fn in_current_span(self) -> Instrumented<Self>[src]

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

impl<T> Instrument for T[src]

fn instrument(self, span: Span) -> Instrumented<Self>[src]

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

fn in_current_span(self) -> Instrumented<Self>[src]

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

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

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

Performs the conversion.

impl<T> Same<T> for T

type Output = T

Should always be Self

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<T> Type for T where
    T: ?Sized
[src]

pub default fn meta(self: *const T) -> <T as Type>::Meta[src]

Retrieve TraitObject, Slice or Concrete meta data respectively for a type

pub default fn data(self: *const T) -> *const ()[src]

Retrieve pointer to the data

pub default fn data_mut(self: *mut T) -> *mut ()[src]

Retrieve mut pointer to the data

pub default fn dangling(t: <T as Type>::Meta) -> NonNull<T>[src]

Create a dangling non-null *const Self with the provided Self::Meta.

pub default fn fatten(thin: *mut (), t: <T as Type>::Meta) -> *mut T[src]

Create a *mut Self with the provided Self::Meta.

const METATYPE: MetaType[src]

Enum describing whether a type is TraitObject, Slice or Concrete.

type Meta: 'static

Type of metadata for type.

fn meta_type(self: *const Self) -> MetaType[src]

Helper method describing whether a type is TraitObject, Slice or Concrete.

impl<T> Type for T[src]

pub const METATYPE: MetaType[src]

Enum describing whether a type is TraitObject, Slice or Concrete.

type Meta = Concrete

Type of metadata for type.

pub fn meta(self: *const T) -> <T as Type>::Meta[src]

Retrieve TraitObject, Slice or Concrete meta data respectively for a type

pub fn data(self: *const T) -> *const ()[src]

Retrieve pointer to the data

pub fn data_mut(self: *mut T) -> *mut ()[src]

Retrieve mut pointer to the data

pub fn dangling(_t: <T as Type>::Meta) -> NonNull<T>[src]

Create a dangling non-null *const Self with the provided Self::Meta.

pub fn fatten(thin: *mut (), _t: <T as Type>::Meta) -> *mut T[src]

Create a *mut Self with the provided Self::Meta.

fn meta_type(self: *const Self) -> MetaType[src]

Helper method describing whether a type is TraitObject, Slice or Concrete.

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

pub fn vzip(self) -> V