[][src]Struct amadeus_core::pipe::SendAll

pub struct SendAll<'a, S: ?Sized, St: ?Sized> { /* fields omitted */ }

Implementations

impl<'a, S: ?Sized, St: ?Sized> SendAll<'a, S, St>[src]

pub fn new(sink: &'a mut S, items: &'a mut St) -> Self[src]

Constructs a new SendAll.

Trait Implementations

impl<S: ?Sized + Sink<Item> + Unpin, St: ?Sized + Stream<Item = Item> + Unpin, Item, '_> Future for SendAll<'_, S, St>[src]

type Output = Option<S::Done>

The type of value produced on completion.

impl<'a, S: ?Sized, St: ?Sized> PinnedDrop for SendAll<'a, S, St>[src]

impl<'pin, 'a, S: ?Sized, St: ?Sized> Unpin for SendAll<'a, S, St> where
    __SendAll<'pin, 'a, S, St>: Unpin
[src]

impl<'a, S: ?Sized, St: ?Sized> UnsafeUnpin for SendAll<'a, S, St>[src]

Auto Trait Implementations

impl<'a, S: ?Sized, St: ?Sized> RefUnwindSafe for SendAll<'a, S, St> where
    S: RefUnwindSafe,
    St: RefUnwindSafe

impl<'a, S: ?Sized, St: ?Sized> Send for SendAll<'a, S, St> where
    S: Send,
    St: Send

impl<'a, S: ?Sized, St: ?Sized> Sync for SendAll<'a, S, St> where
    S: Sync,
    St: Sync

impl<'a, S, St> !UnwindSafe for SendAll<'a, S, St>

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> FutureExt for T where
    T: Future + ?Sized
[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>,