pub struct PulseLimiter {
pub threshold: f32,
pub release: f32,
}Expand description
Limiter effect parameters.
Fields§
§threshold: f32Limiter threshold in dB-style tunes units.
release: f32Release time in seconds.
Implementations§
Trait Implementations§
Source§impl Clone for PulseLimiter
impl Clone for PulseLimiter
Source§fn clone(&self) -> PulseLimiter
fn clone(&self) -> PulseLimiter
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PulseLimiter
impl Debug for PulseLimiter
Source§impl Default for PulseLimiter
impl Default for PulseLimiter
Source§impl PartialEq for PulseLimiter
impl PartialEq for PulseLimiter
Source§fn eq(&self, other: &PulseLimiter) -> bool
fn eq(&self, other: &PulseLimiter) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PulseLimiter
Auto Trait Implementations§
impl Freeze for PulseLimiter
impl RefUnwindSafe for PulseLimiter
impl Send for PulseLimiter
impl Sync for PulseLimiter
impl Unpin for PulseLimiter
impl UnsafeUnpin for PulseLimiter
impl UnwindSafe for PulseLimiter
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<S, T> Duplex<S> for Twhere
T: FromSample<S> + ToSample<S>,
Source§impl<S> FromSample<S> for S
impl<S> FromSample<S> for S
fn from_sample_(s: S) -> S
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more