timely_communication/allocator/zero_copy/
mod.rs

1//! Allocators based on serialized data which avoid copies.
2//!
3//! These allocators are based on `Abomonation` serialization, and its ability to deserialized
4//! typed Rust data in-place. They surface references to data, often ultimately referencing the
5//! raw binary data they initial received.
6
7pub mod bytes_slab;
8pub mod bytes_exchange;
9pub mod tcp;
10pub mod allocator;
11pub mod allocator_process;
12pub mod initialize;
13pub mod push_pull;
14pub mod stream;