🦑 Remote multiplexed objects, channels, observable collections and RPC making remote interactions seamless. Provides multiple remote channels and RPC over TCP, TLS or any other transport.
useserde::{Serialize,de::DeserializeOwned};/// An object that is sendable to a remote endpoint.
////// This trait is automatically implemented for objects that are
/// serializable, deserializable and sendable between threads.
#[cfg_attr(docsrs,doc(cfg(feature ="rch")))]pubtraitRemoteSend: Send + Serialize + DeserializeOwned + 'static {}impl<T> RemoteSend forTwhere T: Send + Serialize + DeserializeOwned + 'static{}