pub struct DspState {
pub instance: Dsp,
pub speaker_mask: u16,
/* private fields */
}
Expand description
DSP plugin structure that is passed into each callback.
Fields§
§instance: Dsp
[r] Handle to the DSP hand the user created. Not to be modified. C++ users cast toDSP to use.
speaker_mask: u16
[w] Specifies which speakers the DSP effect is active on
Auto Trait Implementations§
impl Freeze for DspState
impl RefUnwindSafe for DspState
impl !Send for DspState
impl !Sync for DspState
impl Unpin for DspState
impl UnwindSafe for DspState
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