FfLatterFxReverbState

Struct FfLatterFxReverbState 

Source
pub struct FfLatterFxReverbState {
Show 14 fields pub activate: bool, pub reverb_type: FfLatterFxReverbType, pub pre_delay: u16, pub pre_hpf: u16, pub room_scale: u16, pub attack: u16, pub hold: u16, pub release: u16, pub post_lpf: u16, pub time: u16, pub damping: u16, pub smooth: u16, pub volume: i16, pub stereo_width: u16,
}
Expand description

State of reverb in send effect.

Fields§

§activate: bool

Whether to activate reverb effect.

§reverb_type: FfLatterFxReverbType

The type of reverb effect.

§pre_delay: u16

The pre-delay of reverb effect between 0 and 999.

§pre_hpf: u16

The frequency of high pass filter before reverb generation between 20 and 500 Hz.

§room_scale: u16

The scale of room between 50 and 300, displayed by 1/10.

§attack: u16

The time for increase volume between 5 and 400 ms.

§hold: u16

The time for fixed volume between 5 and 400 ms.

§release: u16

The time for volume decrease between 5 and 500 ms.

§post_lpf: u16

The frequency of low pass filter after reverb generation between 200 and 20000 Hz.

§time: u16

The time for volume drop between 1 and 49, displayed by 1/10 sec.

§damping: u16

The frequency of treble dampling for reverb generation between 2000 and 20000 Hz.

§smooth: u16

The level of softener between 0 and 100.

§volume: i16

The level of output between -650 and 60, displayed by 1/10.

§stereo_width: u16

The stereo width between 0(monaural) and 100(stereo).

Trait Implementations§

Source§

impl Clone for FfLatterFxReverbState

Source§

fn clone(&self) -> FfLatterFxReverbState

Returns a duplicate 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 FfLatterFxReverbState

Source§

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

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

impl Default for FfLatterFxReverbState

Source§

fn default() -> FfLatterFxReverbState

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

impl PartialEq for FfLatterFxReverbState

Source§

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

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

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

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Copy for FfLatterFxReverbState

Source§

impl Eq for FfLatterFxReverbState

Source§

impl StructuralPartialEq for FfLatterFxReverbState

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. 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<O> RmeFfCommandParamsSerialize<FfLatterFxReverbState> for O

Source§

fn serialize_commands(params: &FfLatterFxReverbState) -> Vec<u32>

Serialize parameters into commands.
Source§

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

Source§

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>,

Source§

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>,

Source§

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.