Trait hydra::Receivable

source ·
pub trait Receivable: Serialize + DeserializeOwned + Send + 'static { }
Expand description

An object that can be sent or received to/from a process.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T> Receivable for T
where T: Serialize + DeserializeOwned + Send + 'static,