[][src]Struct rxrust::observable::ObserverErr

pub struct ObserverErr<N, E> { /* fields omitted */ }

Methods

impl<N, E> ObserverErr<N, E>[src]

pub fn new(next: N, error: E) -> Self[src]

Trait Implementations

impl<N: Clone, E: Clone> Clone for ObserverErr<N, E>[src]

impl<Item, Err, N, E> Observer<Item, Err> for ObserverErr<N, E> where
    N: FnMut(Item),
    E: FnMut(Err), 
[src]

Auto Trait Implementations

impl<N, E> RefUnwindSafe for ObserverErr<N, E> where
    E: RefUnwindSafe,
    N: RefUnwindSafe

impl<N, E> Send for ObserverErr<N, E> where
    E: Send,
    N: Send

impl<N, E> Sync for ObserverErr<N, E> where
    E: Sync,
    N: Sync

impl<N, E> Unpin for ObserverErr<N, E> where
    E: Unpin,
    N: Unpin

impl<N, E> UnwindSafe for ObserverErr<N, E> where
    E: UnwindSafe,
    N: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> FilterMap for T[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.