Skip to main content

NodeGraph

Trait NodeGraph 

Source
pub trait NodeGraph:
    DspNode
    + Send
    + 'static { }
Expand description

A DspNode that was constructed via graph combinators.

This is a convenience alias used in Pipeline::from_graph. Any type implementing DspNode + Send + 'static qualifies.

Implementors§

Source§

impl<T: DspNode + Send + 'static> NodeGraph for T