pub struct ReverbState {
Show 16 fields pub input_level: i32, pub bypass: bool, pub kill_wet: bool, pub kill_dry: bool, pub output_level: i32, pub time_decay: i32, pub time_pre_decay: i32, pub color_low: i32, pub color_high: i32, pub color_high_factor: i32, pub mod_rate: i32, pub mod_depth: i32, pub level_early: i32, pub level_reverb: i32, pub level_dry: i32, pub algorithm: ReverbAlgorithm,
}
Expand description

State of reverb effect.

Fields§

§input_level: i32

The level of input. -24..0 (-24.0..0.0 dB).

§bypass: bool§kill_wet: bool§kill_dry: bool§output_level: i32

The level of output. -24..12 (-24.0..12.0 dB).

§time_decay: i32

The decay of time. 1..290.

§time_pre_decay: i32

The pre decay of time. 1..100.

§color_low: i32

The color at low frequency. -50..50.

§color_high: i32

The color at high frequency. -50..50.

§color_high_factor: i32

The factor of color at high frequency. -25..25.

§mod_rate: i32

The rate of modulation. -25..25.

§mod_depth: i32

The depth of modulation. -25..25.

§level_early: i32

The level of early reflection. -48..0.

§level_reverb: i32

The level of reverb. -48..0.

§level_dry: i32

The level of dry. -48..0.

§algorithm: ReverbAlgorithm

The algorithm of reverb.

Trait Implementations§

source§

impl AsMut<ReverbState> for ItwinReverbState

source§

fn as_mut(&mut self) -> &mut ReverbState

Converts this type into a mutable reference of the (usually inferred) input type.
source§

impl AsMut<ReverbState> for K24dReverbState

source§

fn as_mut(&mut self) -> &mut ReverbState

Converts this type into a mutable reference of the (usually inferred) input type.
source§

impl AsMut<ReverbState> for KliveReverbState

source§

fn as_mut(&mut self) -> &mut ReverbState

Converts this type into a mutable reference of the (usually inferred) input type.
source§

impl AsMut<ReverbState> for StudioReverbState

source§

fn as_mut(&mut self) -> &mut ReverbState

Converts this type into a mutable reference of the (usually inferred) input type.
source§

impl AsRef<ReverbState> for ItwinReverbState

source§

fn as_ref(&self) -> &ReverbState

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<ReverbState> for K24dReverbState

source§

fn as_ref(&self) -> &ReverbState

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<ReverbState> for KliveReverbState

source§

fn as_ref(&self) -> &ReverbState

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<ReverbState> for StudioReverbState

source§

fn as_ref(&self) -> &ReverbState

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl Clone for ReverbState

source§

fn clone(&self) -> ReverbState

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for ReverbState

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for ReverbState

source§

fn default() -> ReverbState

Returns the “default value” for a type. Read more
source§

impl PartialEq for ReverbState

source§

fn eq(&self, other: &ReverbState) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Copy for ReverbState

source§

impl Eq for ReverbState

source§

impl StructuralEq for ReverbState

source§

impl StructuralPartialEq for ReverbState

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.