Trait notice_test::Pair[][src]

pub trait Pair {
    type Notify: 'static + Notify + Send;
    type Wait: 'static + Wait + Send;
    fn pair(&self) -> (Self::Notify, Self::Wait);
}

Associated Types

Required Methods

Implementors