Module anchor_chain::chain 
source · Expand description
Provides structures for creating and executing chains.
This module defines Chain and ChainBuilder structures for building chains of
operations where each operation is represented by a Node. These chains
facilitate asynchronous processing of data from an initial input to a final output.
Structs§
- Represents a chain of nodes that can asynchronously process data.
 - A builder for constructing a
Chainof nodes. - A builder for constructing a
Chainof nodes using Link. - A builder for constructing a
Chainof nodes usingLinkandStatefulLink.