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

pub trait SharedBoxObservable {
    type Item;
    type Err;
    fn box_subscribe(
        self: Box<Self>,
        observer: Box<dyn Observer<Item = Self::Item, Err = Self::Err> + Send + Sync>
    ) -> Box<dyn SubscriptionLike + Send + Sync>; }

Associated Types

Required methods

Implementors