pub trait SubscribeErr<'a, N, E> {
    type Unsub: SubscriptionLike;
    fn subscribe_err(
        self,
        next: N,
        error: E
    ) -> SubscriptionWrapper<Self::Unsub>; }

Associated Types

Required methods

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. completion.

Implementors