logo
pub trait RemoteSend: Send + Serialize + DeserializeOwned + 'static { }
This is supported 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.

Implementors