Trait rxrust::ops::box_it::BoxObservable[][src]

pub trait BoxObservable<'a> {
    type Item;
    type Err;
    fn box_subscribe(
        self: Box<Self>,
        subscriber: Subscriber<Box<dyn Observer<Item = Self::Item, Err = Self::Err> + 'a>, LocalSubscription>
    ) -> Box<dyn SubscriptionLike>; }

Associated Types

Required methods

Implementors