MCPcopy Create free account
hub / github.com/BillyDM/Firewheel / AudioNodeInfoInner

Class AudioNodeInfoInner

crates/firewheel-core/src/node.rs:208–215  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

206/// Information about an [`AudioNode`]. Used internally by the Firewheel context.
207#[derive(Debug)]
208pub 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///

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected