[][src]Module dasp_graph::node

Structs

BoxedNode

A wrapper around a Box<dyn Node>.

BoxedNodeSend

A wrapper around a Box<dyn Node>.

Delay

A delay node, where the delay duration for each channel is equal to the length of the inner ring buffer associated with that channel.

GraphNode
Input

A reference to another node that is an input to the current node.

Pass

A simple node that passes an input directly to the output.

Sum

A stateless node that sums each of the inputs onto the output.

SumBuffers

A stateless node that sums all of the buffers of all of the inputs onto each of the output buffers.

Traits

Node

The Node type used within a dasp graph must implement this trait.