[][src]Struct amadeus_core::pipe::PipeSink

pub struct PipeSink<P, S> { /* fields omitted */ }

Trait Implementations

impl<P, S> PinnedDrop for PipeSink<P, S>[src]

impl<P, S, Item> Sink<Item> for PipeSink<P, S> where
    P: Pipe<Item>,
    S: Sink<P::Output>, 
[src]

type Done = S::Done

impl<'pin, P, S> Unpin for PipeSink<P, S> where
    __PipeSink<'pin, P, S>: Unpin
[src]

impl<P, S> UnsafeUnpin for PipeSink<P, S>[src]

Auto Trait Implementations

impl<P, S> RefUnwindSafe for PipeSink<P, S> where
    P: RefUnwindSafe,
    S: RefUnwindSafe

impl<P, S> Send for PipeSink<P, S> where
    P: Send,
    S: Send

impl<P, S> Sync for PipeSink<P, S> where
    P: Sync,
    S: Sync

impl<P, S> UnwindSafe for PipeSink<P, S> where
    P: UnwindSafe,
    S: UnwindSafe

Blanket Implementations

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

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

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

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

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

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.

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