pub struct FfLatterHpfState {
pub activates: Vec<bool>,
pub cut_offs: Vec<u16>,
pub roll_offs: Vec<FfLatterHpfRollOffLevel>,
}Expand description
State of high pass filter in channel strip effect.
Fields§
§activates: Vec<bool>Whether to activate high pass filter.
cut_offs: Vec<u16>The frequency to cut between 20 and 500 Hz.
roll_offs: Vec<FfLatterHpfRollOffLevel>The ratio to decline gain.
Trait Implementations§
Source§impl AsMut<FfLatterHpfState> for FfLatterInputHpfParameters
impl AsMut<FfLatterHpfState> for FfLatterInputHpfParameters
Source§fn as_mut(&mut self) -> &mut FfLatterHpfState
fn as_mut(&mut self) -> &mut FfLatterHpfState
Converts this type into a mutable reference of the (usually inferred) input type.
Source§impl AsMut<FfLatterHpfState> for FfLatterOutputHpfParameters
impl AsMut<FfLatterHpfState> for FfLatterOutputHpfParameters
Source§fn as_mut(&mut self) -> &mut FfLatterHpfState
fn as_mut(&mut self) -> &mut FfLatterHpfState
Converts this type into a mutable reference of the (usually inferred) input type.
Source§impl AsRef<FfLatterHpfState> for FfLatterInputHpfParameters
impl AsRef<FfLatterHpfState> for FfLatterInputHpfParameters
Source§fn as_ref(&self) -> &FfLatterHpfState
fn as_ref(&self) -> &FfLatterHpfState
Converts this type into a shared reference of the (usually inferred) input type.
Source§impl AsRef<FfLatterHpfState> for FfLatterOutputHpfParameters
impl AsRef<FfLatterHpfState> for FfLatterOutputHpfParameters
Source§fn as_ref(&self) -> &FfLatterHpfState
fn as_ref(&self) -> &FfLatterHpfState
Converts this type into a shared reference of the (usually inferred) input type.
Source§impl Clone for FfLatterHpfState
impl Clone for FfLatterHpfState
Source§fn clone(&self) -> FfLatterHpfState
fn clone(&self) -> FfLatterHpfState
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 FfLatterHpfState
impl Debug for FfLatterHpfState
Source§impl PartialEq for FfLatterHpfState
impl PartialEq for FfLatterHpfState
impl Eq for FfLatterHpfState
impl StructuralPartialEq for FfLatterHpfState
Auto Trait Implementations§
impl Freeze for FfLatterHpfState
impl RefUnwindSafe for FfLatterHpfState
impl Send for FfLatterHpfState
impl Sync for FfLatterHpfState
impl Unpin for FfLatterHpfState
impl UnwindSafe for FfLatterHpfState
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