Trait Event

Source
pub trait Event:
    Send
    + Sync
    + 'static { }
Expand description

Marker trait for data to use with the EventChannel.

Has an implementation for all types where its bounds are satisfied.

Implementors§

Source§

impl<T> Event for T
where T: Send + Sync + 'static,