Trait timely::communication::Data

source ·
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.

Object Safety§

This trait is not object safe.

Implementors§

source§

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