Trait rxrust::shared::SharedObservable
source · [−]pub trait SharedObservable: Observable {
type Unsub: SubscriptionLike + Sync + Send + 'static;
fn actual_subscribe<O>(self, observer: O) -> Self::Unsub
where
O: Observer<Item = Self::Item, Err = Self::Err> + Sync + Send + 'static;
fn into_shared(self) -> Shared<Self>
where
Self: Sized,
{ ... }
}
Associated Types
type Unsub: SubscriptionLike + Sync + Send + 'static
Required methods
Provided methods
Convert to a thread-safe mode.