pub struct Config {
pub update_rate_hz: f64,
pub command_queue_size: usize,
pub collect_stats: bool,
pub log_events: bool,
}Expand description
Configuration for the patchbay.
Fields§
§update_rate_hz: f64Automaton update rate in Hz.
command_queue_size: usizeCommand queue capacity.
collect_stats: boolWhether to collect runtime statistics.
log_events: boolWhether to emit log events.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Config
impl RefUnwindSafe for Config
impl Send for Config
impl Sync for Config
impl Unpin for Config
impl UnsafeUnpin for Config
impl UnwindSafe for Config
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more