Struct actix::fut::stream::Finish[][src]

#[must_use = "streams do nothing unless polled"]pub struct Finish<S> { /* fields omitted */ }

Future for the finish method.

Implementations

impl<S> Finish<S>[src]

pub fn new(stream: S) -> Finish<S>[src]

Trait Implementations

impl<S, A> ActorFuture<A> for Finish<S> where
    S: ActorStream<A>,
    A: Actor
[src]

type Output = ()

The type of value that this future will resolved with if it is successful. Read more

impl<S: Debug> Debug for Finish<S>[src]

impl<'__pin, S> Unpin for Finish<S> where
    __Origin<'__pin, S>: Unpin
[src]

Auto Trait Implementations

impl<S> RefUnwindSafe for Finish<S> where
    S: RefUnwindSafe

impl<S> Send for Finish<S> where
    S: Send

impl<S> Sync for Finish<S> where
    S: Sync

impl<S> UnwindSafe for Finish<S> where
    S: UnwindSafe

Blanket Implementations

impl<F, A> ActorFutureExt<A> for F where
    F: ActorFuture<A>,
    A: Actor
[src]

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.