[][src]Struct reactor_rs::mono::MonoScheduleOn

pub struct MonoScheduleOn<T, E, M, C> where
    M: 'static + Send + Mono<T, E> + Sized,
    C: Scheduler<Item = T, Error = E> + Sized
{ /* fields omitted */ }

Methods

impl<T, E, M, C> MonoScheduleOn<T, E, M, C> where
    M: 'static + Send + Mono<T, E> + Sized,
    C: Scheduler<Item = T, Error = E> + Sized
[src]

pub fn new(source: M, scheduler: C) -> MonoScheduleOn<T, E, M, C>[src]

Trait Implementations

impl<T, E, M, C> Mono<T, E> for MonoScheduleOn<T, E, M, C> where
    M: 'static + Send + Mono<T, E> + Sized,
    C: Scheduler<Item = T, Error = E> + Sized
[src]

impl<T, E, M, C> Publisher for MonoScheduleOn<T, E, M, C> where
    M: 'static + Send + Mono<T, E> + Sized,
    C: Scheduler<Item = T, Error = E> + Sized
[src]

type Item = T

type Error = E

Auto Trait Implementations

impl<T, E, M, C> Send for MonoScheduleOn<T, E, M, C> where
    C: Send

impl<T, E, M, C> Sync for MonoScheduleOn<T, E, M, C> where
    C: Sync,
    M: Sync

impl<T, E, M, C> Unpin for MonoScheduleOn<T, E, M, C> where
    C: Unpin,
    M: Unpin

impl<T, E, M, C> UnwindSafe for MonoScheduleOn<T, E, M, C> where
    C: UnwindSafe,
    M: UnwindSafe

impl<T, E, M, C> RefUnwindSafe for MonoScheduleOn<T, E, M, C> where
    C: RefUnwindSafe,
    M: RefUnwindSafe

Blanket Implementations

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

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

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.

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

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

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