Trait remoc::RemoteSend

source ·
pub trait RemoteSend: Send + Serialize + DeserializeOwned + 'static { }
Available on crate feature rch only.
Expand description

An object that is sendable to a remote endpoint.

This trait is automatically implemented for objects that are serializable, deserializable and sendable between threads.

Object Safety§

This trait is not object safe.

Implementors§

source§

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