pub enum Event {
AutomatonUpdated {
id: String,
value: f64,
time: f64,
},
MappingTriggered {
pattern: String,
target: String,
value: f32,
},
CommandSent(SetParameter),
Error(String),
}Expand description
Events emitted by the patchbay manager for logging and debugging.
Variants§
AutomatonUpdated
An automaton was updated with a new value.
MappingTriggered
A mapping was triggered by an incoming event.
Fields
CommandSent(SetParameter)
A command was sent to the audio thread.
Error(String)
An error occurred.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Event
impl RefUnwindSafe for Event
impl Send for Event
impl Sync for Event
impl Unpin for Event
impl UnsafeUnpin for Event
impl UnwindSafe for Event
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