pub struct LimiterParameter {
pub level: u8,
pub attack_release: Option<(u8, u8, bool)>,
}
Fields§
§level: u8
§attack_release: Option<(u8, u8, bool)>
Trait Implementations§
Source§impl Clone for LimiterParameter
impl Clone for LimiterParameter
Source§fn clone(&self) -> LimiterParameter
fn clone(&self) -> LimiterParameter
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 LimiterParameter
impl Debug for LimiterParameter
Source§impl PartialEq for LimiterParameter
impl PartialEq for LimiterParameter
impl StructuralPartialEq for LimiterParameter
Auto Trait Implementations§
impl Freeze for LimiterParameter
impl RefUnwindSafe for LimiterParameter
impl Send for LimiterParameter
impl Sync for LimiterParameter
impl Unpin for LimiterParameter
impl UnwindSafe for LimiterParameter
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