| 11 | /// The configuration for a [`DummyNode`], a node which does nothing. |
| 12 | #[derive(Default, Debug, Clone, Copy, PartialEq, Eq)] |
| 13 | pub(crate) struct DummyNodeConfig { |
| 14 | pub channel_config: ChannelConfig, |
| 15 | } |
| 16 | |
| 17 | impl AudioNode for DummyNode { |
| 18 | type Configuration = DummyNodeConfig; |
nothing calls this directly
no outgoing calls
no test coverage detected