pub trait Data: Send + Sync + Any + Serialize + for<'a> Deserialize<'a> + 'static { }
Expand description

A composite trait for types that may be used with channels.

Implementors§

source§

impl<T> Data for Twhere T: Send + Sync + Any + Serialize + for<'a> Deserialize<'a> + 'static,