pub struct ShellReverbReturn {
pub plugin_mode: bool,
pub return_gain: i32,
pub return_mute: bool,
}
Expand description
Return configuration of reverb effect.
Fields§
§plugin_mode: bool
Whether to use reverb effect as plugin. When enabled, return of reverb effect is delivered by rx stream.
return_gain: i32
The gain to return reverb effect to mixer output.
return_mute: bool
Whether to mute return reverb effect to mixer output.
Trait Implementations§
Source§impl AsMut<ShellReverbReturn> for K24dMixerState
impl AsMut<ShellReverbReturn> for K24dMixerState
Source§fn as_mut(&mut self) -> &mut ShellReverbReturn
fn as_mut(&mut self) -> &mut ShellReverbReturn
Converts this type into a mutable reference of the (usually inferred) input type.
Source§impl AsMut<ShellReverbReturn> for KliveMixerState
impl AsMut<ShellReverbReturn> for KliveMixerState
Source§fn as_mut(&mut self) -> &mut ShellReverbReturn
fn as_mut(&mut self) -> &mut ShellReverbReturn
Converts this type into a mutable reference of the (usually inferred) input type.
Source§impl AsRef<ShellReverbReturn> for K24dMixerState
impl AsRef<ShellReverbReturn> for K24dMixerState
Source§fn as_ref(&self) -> &ShellReverbReturn
fn as_ref(&self) -> &ShellReverbReturn
Converts this type into a shared reference of the (usually inferred) input type.
Source§impl AsRef<ShellReverbReturn> for KliveMixerState
impl AsRef<ShellReverbReturn> for KliveMixerState
Source§fn as_ref(&self) -> &ShellReverbReturn
fn as_ref(&self) -> &ShellReverbReturn
Converts this type into a shared reference of the (usually inferred) input type.
Source§impl Clone for ShellReverbReturn
impl Clone for ShellReverbReturn
Source§fn clone(&self) -> ShellReverbReturn
fn clone(&self) -> ShellReverbReturn
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ShellReverbReturn
impl Debug for ShellReverbReturn
Source§impl Default for ShellReverbReturn
impl Default for ShellReverbReturn
Source§fn default() -> ShellReverbReturn
fn default() -> ShellReverbReturn
Returns the “default value” for a type. Read more
Source§impl PartialEq for ShellReverbReturn
impl PartialEq for ShellReverbReturn
impl Copy for ShellReverbReturn
impl Eq for ShellReverbReturn
impl StructuralPartialEq for ShellReverbReturn
Auto Trait Implementations§
impl Freeze for ShellReverbReturn
impl RefUnwindSafe for ShellReverbReturn
impl Send for ShellReverbReturn
impl Sync for ShellReverbReturn
impl Unpin for ShellReverbReturn
impl UnwindSafe for ShellReverbReturn
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