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

Class AudioNodeInfo

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

Source from the content-addressed store, hash-verified

85/// it is likely that more fields will be added in the future.
86#[derive(Debug)]
87pub 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
96impl AudioNodeInfo {
97 /// Construct a new [`AudioNodeInfo`] builder struct.

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected