| 206 | /// Information about an [`AudioNode`]. Used internally by the Firewheel context. |
| 207 | #[derive(Debug)] |
| 208 | pub struct AudioNodeInfoInner { |
| 209 | pub debug_name: &'static str, |
| 210 | pub channel_config: ChannelConfig, |
| 211 | pub call_update_method: bool, |
| 212 | pub custom_state: Option<Box<dyn Any>>, |
| 213 | pub latency_frames: u32, |
| 214 | pub in_place_buffers: bool, |
| 215 | } |
| 216 | |
| 217 | /// A trait representing a node in a Firewheel audio graph. |
| 218 | /// |
nothing calls this directly
no outgoing calls
no test coverage detected