pub trait RmeFfLatterDynamicsSpecification {
Show 18 associated constants and 0 method
const DYN_GAIN_MIN: i32 = -300i32;
const DYN_GAIN_MAX: i32 = 300i32;
const DYN_GAIN_STEP: i32 = 1i32;
const DYN_ATTACK_MIN: i32 = 0i32;
const DYN_ATTACK_MAX: i32 = 200i32;
const DYN_ATTACK_STEP: i32 = 1i32;
const DYN_RELEASE_MIN: i32 = 100i32;
const DYN_RELEASE_MAX: i32 = 999i32;
const DYN_RELEASE_STEP: i32 = 1i32;
const DYN_COMP_THRESHOLD_MIN: i32 = -600i32;
const DYN_COMP_THRESHOLD_MAX: i32 = 0i32;
const DYN_COMP_THRESHOLD_STEP: i32 = 1i32;
const DYN_RATIO_MIN: i32 = 10i32;
const DYN_RATIO_MAX: i32 = 100i32;
const DYN_RATIO_STEP: i32 = 1i32;
const DYN_EX_THRESHOLD_MIN: i32 = -999i32;
const DYN_EX_THRESHOLD_MAX: i32 = -200i32;
const DYN_EX_THRESHOLD_STEP: i32 = 1i32;
}Expand description
The specification of channel strip.
Provided Associated Constants§
Sourceconst DYN_GAIN_MIN: i32 = -300i32
const DYN_GAIN_MIN: i32 = -300i32
The minimum value of gain.
Sourceconst DYN_GAIN_MAX: i32 = 300i32
const DYN_GAIN_MAX: i32 = 300i32
The maximum value of gain.
Sourceconst DYN_GAIN_STEP: i32 = 1i32
const DYN_GAIN_STEP: i32 = 1i32
The step value of gain.
Sourceconst DYN_ATTACK_MIN: i32 = 0i32
const DYN_ATTACK_MIN: i32 = 0i32
The minimum value of attack.
Sourceconst DYN_ATTACK_MAX: i32 = 200i32
const DYN_ATTACK_MAX: i32 = 200i32
The maximum value of attack.
Sourceconst DYN_ATTACK_STEP: i32 = 1i32
const DYN_ATTACK_STEP: i32 = 1i32
The step value of attack.
Sourceconst DYN_RELEASE_MIN: i32 = 100i32
const DYN_RELEASE_MIN: i32 = 100i32
The minimum value of release.
Sourceconst DYN_RELEASE_MAX: i32 = 999i32
const DYN_RELEASE_MAX: i32 = 999i32
The maximum value of release.
Sourceconst DYN_RELEASE_STEP: i32 = 1i32
const DYN_RELEASE_STEP: i32 = 1i32
The step value of release.
Sourceconst DYN_COMP_THRESHOLD_MIN: i32 = -600i32
const DYN_COMP_THRESHOLD_MIN: i32 = -600i32
The minimum value of compressor threshold.
Sourceconst DYN_COMP_THRESHOLD_MAX: i32 = 0i32
const DYN_COMP_THRESHOLD_MAX: i32 = 0i32
The maximum value of compressor threshold.
Sourceconst DYN_COMP_THRESHOLD_STEP: i32 = 1i32
const DYN_COMP_THRESHOLD_STEP: i32 = 1i32
The step value of compressor threshold.
Sourceconst DYN_RATIO_MIN: i32 = 10i32
const DYN_RATIO_MIN: i32 = 10i32
The minimum value of ratio.
Sourceconst DYN_RATIO_MAX: i32 = 100i32
const DYN_RATIO_MAX: i32 = 100i32
The maximum value of ratio.
Sourceconst DYN_RATIO_STEP: i32 = 1i32
const DYN_RATIO_STEP: i32 = 1i32
The step value of ratio.
Sourceconst DYN_EX_THRESHOLD_MIN: i32 = -999i32
const DYN_EX_THRESHOLD_MIN: i32 = -999i32
The minimum value of extra threshold.
Sourceconst DYN_EX_THRESHOLD_MAX: i32 = -200i32
const DYN_EX_THRESHOLD_MAX: i32 = -200i32
The maximum value of extra .
Sourceconst DYN_EX_THRESHOLD_STEP: i32 = 1i32
const DYN_EX_THRESHOLD_STEP: i32 = 1i32
The step value of extra .
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.