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

Listener trait

Provided Methods

Join current Listener with the other.

Implementors