Trait Msg

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

A message that can be sent between threads.

Implementors§

Source§

impl<T: Send + 'static> Msg for T