pub struct PluginParamSnapshot {
pub enable_callbacks: bool,
pub reason: usize,
pub addr: i32,
pub value: ParamChangeValue,
}Expand description
Read-only snapshot of param values available to the processing thread.
Fields§
§enable_callbacks: bool§reason: usizeThe param reason that changed.
addr: i32The address (sub-device) that changed.
value: ParamChangeValueThe new value.
Auto Trait Implementations§
impl Freeze for PluginParamSnapshot
impl RefUnwindSafe for PluginParamSnapshot
impl Send for PluginParamSnapshot
impl Sync for PluginParamSnapshot
impl Unpin for PluginParamSnapshot
impl UnsafeUnpin for PluginParamSnapshot
impl UnwindSafe for PluginParamSnapshot
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