Add a node to the audio graph which implements the type-erased [`DynAudioNode`] trait.
(
&mut self,
node: T,
)
| 943 | &mut self, |
| 944 | node: T, |
| 945 | config: Option<T::Configuration>, |
| 946 | ) -> Result<NodeID, NodeError> { |
| 947 | self.graph.add_node(node, config) |
| 948 | } |
| 949 | |
| 950 | /// Add a node to the audio graph which implements the type-erased [`DynAudioNode`] trait. |
| 951 | pub fn add_dyn_node<T: DynAudioNode + 'static>( |
| 952 | &mut self, |
| 953 | node: T, |
no outgoing calls
no test coverage detected