[][src]Struct amadeus_core::pipe::Send

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

Implementations

impl<'a, S: ?Sized, Item> Send<'a, S, Item>[src]

pub fn new(sink: &'a mut S, item: Poll<Item>) -> Self[src]

Constructs a new Send.

Trait Implementations

impl<S: ?Sized + Sink<Item> + Unpin, Item, '_> Future for Send<'_, S, Item>[src]

type Output = Option<S::Done>

The type of value produced on completion.

impl<'a, S: ?Sized, Item> PinnedDrop for Send<'a, S, Item>[src]

impl<'pin, 'a, S: ?Sized, Item> Unpin for Send<'a, S, Item> where
    __Send<'pin, 'a, S, Item>: Unpin
[src]

impl<'a, S: ?Sized, Item> UnsafeUnpin for Send<'a, S, Item>[src]

Auto Trait Implementations

impl<'a, S: ?Sized, Item> RefUnwindSafe for Send<'a, S, Item> where
    Item: RefUnwindSafe,
    S: RefUnwindSafe

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

impl<'a, S: ?Sized, Item> Sync for Send<'a, S, Item> where
    Item: Sync,
    S: Sync

impl<'a, S, Item> !UnwindSafe for Send<'a, S, Item>

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>,