pub enum SoundCoreEvent {
Unknown(EventInfo),
ParamChange {
feature: SoundCoreFeature,
parameter: SoundCoreParameter,
},
}Expand description
Describes an event produced through the SoundCore API.
Variants§
Unknown(EventInfo)
An event occurred that could not be translated.
The original event information is included unmodified.
ParamChange
A parameter value has changed
Fields
§
feature: SoundCoreFeatureThe feature that changed
§
parameter: SoundCoreParameterThe parameter that changed
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SoundCoreEvent
impl RefUnwindSafe for SoundCoreEvent
impl !Send for SoundCoreEvent
impl !Sync for SoundCoreEvent
impl Unpin for SoundCoreEvent
impl UnwindSafe for SoundCoreEvent
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