pub struct FfLatterAutolevelState {
pub activates: Vec<bool>,
pub max_gains: Vec<u16>,
pub headrooms: Vec<u16>,
pub rise_times: Vec<u16>,
}Expand description
State of autolevel in channel strip effects.
Fields§
§activates: Vec<bool>Whether to activate auto level.
max_gains: Vec<u16>The maximum level of amplification between 0 and 180, displayed by 1/10 for dB.
headrooms: Vec<u16>The level of head room to decline signal peak between 30 and 120, displayed by 1/10 for dB.
rise_times: Vec<u16>The speed of level increase between 1 and 99, displayed by 1/10 for seconds.
Trait Implementations§
Source§impl AsMut<FfLatterAutolevelState> for FfLatterInputAutolevelParameters
impl AsMut<FfLatterAutolevelState> for FfLatterInputAutolevelParameters
Source§fn as_mut(&mut self) -> &mut FfLatterAutolevelState
fn as_mut(&mut self) -> &mut FfLatterAutolevelState
Converts this type into a mutable reference of the (usually inferred) input type.
Source§impl AsMut<FfLatterAutolevelState> for FfLatterOutputAutolevelParameters
impl AsMut<FfLatterAutolevelState> for FfLatterOutputAutolevelParameters
Source§fn as_mut(&mut self) -> &mut FfLatterAutolevelState
fn as_mut(&mut self) -> &mut FfLatterAutolevelState
Converts this type into a mutable reference of the (usually inferred) input type.
Source§impl AsRef<FfLatterAutolevelState> for FfLatterInputAutolevelParameters
impl AsRef<FfLatterAutolevelState> for FfLatterInputAutolevelParameters
Source§fn as_ref(&self) -> &FfLatterAutolevelState
fn as_ref(&self) -> &FfLatterAutolevelState
Converts this type into a shared reference of the (usually inferred) input type.
Source§impl AsRef<FfLatterAutolevelState> for FfLatterOutputAutolevelParameters
impl AsRef<FfLatterAutolevelState> for FfLatterOutputAutolevelParameters
Source§fn as_ref(&self) -> &FfLatterAutolevelState
fn as_ref(&self) -> &FfLatterAutolevelState
Converts this type into a shared reference of the (usually inferred) input type.
Source§impl Clone for FfLatterAutolevelState
impl Clone for FfLatterAutolevelState
Source§fn clone(&self) -> FfLatterAutolevelState
fn clone(&self) -> FfLatterAutolevelState
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 FfLatterAutolevelState
impl Debug for FfLatterAutolevelState
Source§impl PartialEq for FfLatterAutolevelState
impl PartialEq for FfLatterAutolevelState
impl Eq for FfLatterAutolevelState
impl StructuralPartialEq for FfLatterAutolevelState
Auto Trait Implementations§
impl Freeze for FfLatterAutolevelState
impl RefUnwindSafe for FfLatterAutolevelState
impl Send for FfLatterAutolevelState
impl Sync for FfLatterAutolevelState
impl Unpin for FfLatterAutolevelState
impl UnwindSafe for FfLatterAutolevelState
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