pub struct TrackSnapshot {Show 19 fields
pub gain: f32,
pub cutoff: f32,
pub resonance: f32,
pub detune: f32,
pub sweep_k: f32,
pub sweep_center: f32,
pub reverb_mix: f32,
pub supermass: f32,
pub pulse_depth: f32,
pub freq: f32,
pub life_mod: f32,
pub pattern_bits: u32,
pub pattern_hits: f32,
pub pattern_rotation: f32,
pub lfo_rate: f32,
pub lfo_depth: f32,
pub lfo_target: f32,
pub character: f32,
pub muted: bool,
}Fields§
§gain: f32§cutoff: f32§resonance: f32§detune: f32§sweep_k: f32§sweep_center: f32§reverb_mix: f32§supermass: f32§pulse_depth: f32§freq: f32§life_mod: f32§pattern_bits: u32§pattern_hits: f32§pattern_rotation: f32§lfo_rate: f32§lfo_depth: f32§lfo_target: f32§character: f32§muted: boolAuto Trait Implementations§
impl Freeze for TrackSnapshot
impl RefUnwindSafe for TrackSnapshot
impl Send for TrackSnapshot
impl Sync for TrackSnapshot
impl Unpin for TrackSnapshot
impl UnsafeUnpin for TrackSnapshot
impl UnwindSafe for TrackSnapshot
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
Source§impl<S> FromSample<S> for S
impl<S> FromSample<S> for S
fn from_sample_(s: S) -> S
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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