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

Associated Types

Required methods

Implementors