| 85 | /// it is likely that more fields will be added in the future. |
| 86 | #[derive(Debug)] |
| 87 | pub struct AudioNodeInfo { |
| 88 | debug_name: &'static str, |
| 89 | channel_config: ChannelConfig, |
| 90 | call_update_method: bool, |
| 91 | custom_state: Option<Box<dyn Any>>, |
| 92 | latency_frames: u32, |
| 93 | in_place_buffers: bool, |
| 94 | } |
| 95 | |
| 96 | impl AudioNodeInfo { |
| 97 | /// Construct a new [`AudioNodeInfo`] builder struct. |
nothing calls this directly
no outgoing calls
no test coverage detected