logo
pub trait Listener: Accept {
    fn join<T>(self, other: T) -> JoinedListener<Self, T>
    where
        Self: Sized
, { ... } }
Expand description

Listener trait

Provided Methods

Join current Listener with the other.

Implementors