[][src]Trait rxrust::subscribable::SubscribableAll

pub trait SubscribableAll<Item, Err, N, E, C> {
    type Unsub;
    fn subscribe_all(self, next: N, error: E, complete: C) -> Self::Unsub;
}

Associated Types

type Unsub

A type implementing SubscriptionLike

Loading content...

Required methods

fn subscribe_all(self, next: N, error: E, complete: C) -> Self::Unsub

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

  • error: A handler for a terminal event resulting from an error.
  • complete: A handler for a terminal event resulting from successful completion.
Loading content...

Implementors

impl<S, Item, Err, N, E, C> SubscribableAll<Item, Err, N, E, C> for S where
    S: RawSubscribable<Item, Err, Subscriber<SubscribeAll<N, E, C>, LocalSubscription>>,
    N: FnMut(Item),
    E: FnMut(Err),
    C: FnMut(), 
[src]

type Unsub = S::Unsub

Loading content...