Module allocator

Source
Expand description

Types and traits for the allocation of channels.

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.

Structs§

Process
An allocator for inter-thread, intra-process communication
Thread
An allocator for intra-thread communication.

Enums§

Generic
Enumerates known implementors of Allocate. Passes trait method calls on to members.
GenericBuilder
Enumerations of constructable implementors of Allocate.

Traits§

Allocate
A type capable of allocating channels.
AllocateBuilder
A proto-allocator, which implements Send and can be completed with build.
Exchangeable
A type that can be sent along an allocated channel.
PeerBuilder
A builder for vectors of peers.