Expand description
Types and traits for the allocation of channels.
Re-exports§
pub use self::thread::Thread;pub use self::generic::Allocator;pub use self::generic::AllocatorBuilder;
Modules§
- canary
- A helper struct to report when something has been dropped.
- counters
- Push and Pull wrappers to maintain counts of messages in channels.
- generic
- A generic allocator, wrapping known implementors of
Allocate. - process
- Typed inter-thread, intra-process channels.
- thread
- Intra-thread communication.
- zero_
copy - Allocators based on serialized data which avoid copies.
Enums§
- Process
- The runtime counterpart of
ProcessBuilder: the actual constructed inner allocator. - Process
Builder - Two flavors of intra-process allocator builder.
Traits§
- Exchangeable
- A type that can be sent along an allocated channel.