[−][src]Trait rxrust::subscribable::SubscribableAll
Associated Types
type Unsub
A type implementing SubscriptionLike
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.
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]
S: RawSubscribable<Item, Err, Subscriber<SubscribeAll<N, E, C>, LocalSubscription>>,
N: FnMut(Item),
E: FnMut(Err),
C: FnMut(),