pub struct EnvelopeFollowerHandleImpl<ST: AtomicFloatRepresentable> { /* private fields */ }
Expand description
Handle for EnvelopeFollowerProcessorImpl
use this to interact with the processor parameters from
any thread.
Implementations§
source§impl<ST: Float + AtomicFloatRepresentable> EnvelopeFollowerHandleImpl<ST>
impl<ST: Float + AtomicFloatRepresentable> EnvelopeFollowerHandleImpl<ST>
sourcepub fn set_attack(&self, duration: Duration)
pub fn set_attack(&self, duration: Duration)
Set the attack as a Duration
sourcepub fn set_release(&self, duration: Duration)
pub fn set_release(&self, duration: Duration)
Set the release as a Duration
Auto Trait Implementations§
impl<ST> RefUnwindSafe for EnvelopeFollowerHandleImpl<ST>where ST: RefUnwindSafe, <ST as AtomicFloatRepresentable>::AtomicType: RefUnwindSafe,
impl<ST> Send for EnvelopeFollowerHandleImpl<ST>where ST: Send, <ST as AtomicFloatRepresentable>::AtomicType: Send,
impl<ST> Sync for EnvelopeFollowerHandleImpl<ST>where ST: Sync, <ST as AtomicFloatRepresentable>::AtomicType: Sync,
impl<ST> Unpin for EnvelopeFollowerHandleImpl<ST>where ST: Unpin, <ST as AtomicFloatRepresentable>::AtomicType: Unpin,
impl<ST> UnwindSafe for EnvelopeFollowerHandleImpl<ST>where ST: UnwindSafe, <ST as AtomicFloatRepresentable>::AtomicType: UnwindSafe,
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