[][src]Trait rxrust::observable::Connect

pub trait Connect {
    type Unsub;
    fn connect(self) -> Self::Unsub;
}

Associated Types

type Unsub

Loading content...

Required methods

fn connect(self) -> Self::Unsub

Loading content...

Implementors

impl<Source, O, U> Connect for ConnectableObservable<Source, Subject<O, U>> where
    Source: RawSubscribable<Subscriber<O, U>>, 
[src]

type Unsub = Source::Unsub

Loading content...