remoc/robj/mod.rs
1//! Remote objects.
2//!
3//! This module provides functionality to access and transmit data remotely.
4//! All types presented here can be sent over [remote channels](crate::rch)
5//! or used as arguments or return types of [remote functions](crate::rfn) or in
6//! [remote traits](crate::rtc).
7//!
8
9pub mod handle;
10pub mod lazy;
11pub mod lazy_blob;
12pub mod rw_lock;