Trait rxrust::subscription::SubscriptionLike[][src]

pub trait SubscriptionLike {
    fn unsubscribe(&mut self);
fn is_closed(&self) -> bool; }
Expand description

Subscription returns from Observable.subscribe(Subscriber) to allow unsubscribing.

Required methods

This allows deregistering an stream before it has finished receiving all events (i.e. before onCompleted is called).

Implementations on Foreign Types

Implementors