Trait rxrust::observable::SubscribeNext[][src]

pub trait SubscribeNext<'a, N> {
    type Unsub: SubscriptionLike;
    fn subscribe(self, next: N) -> SubscriptionWrapper<Self::Unsub>;
}

Associated Types

A type implementing SubscriptionLike

Required methods

Invokes an execution of an Observable and registers Observer handlers for notifications it will emit.

Implementors