Enum hey_listen::ParallelDispatcherRequest [] [src]

pub enum ParallelDispatcherRequest {
    StopListening,
}

An enum returning a request from a Listener to its async event-dispatcher.

StopListening will remove your Listener from the event-dispatcher.

Note: Opposed to SyncDispatcherRequest a Listener cannot stop propagation as the propagation is happening parallel.

Variants

Trait Implementations

impl Debug for ParallelDispatcherRequest
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations