pub struct TrackPreset {Show 20 fields
pub name: String,
pub kind: String,
pub freq: f32,
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 pattern_hits: f32,
pub pattern_rotation: f32,
pub lfo_rate: f32,
pub lfo_depth: f32,
pub lfo_target: f32,
pub character: f32,
pub arp: f32,
pub mute: bool,
}Fields§
§name: String§kind: String§freq: f32§gain: f32§cutoff: f32§resonance: f32§detune: f32§sweep_k: f32§sweep_center: f32§reverb_mix: f32§supermass: f32§pulse_depth: f32§pattern_hits: f32§pattern_rotation: f32§lfo_rate: f32§lfo_depth: f32§lfo_target: f32§character: f32§arp: f32§mute: boolTrait Implementations§
Source§impl Debug for TrackPreset
impl Debug for TrackPreset
Source§impl<'de> Deserialize<'de> for TrackPreset
impl<'de> Deserialize<'de> for TrackPreset
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for TrackPreset
impl RefUnwindSafe for TrackPreset
impl Send for TrackPreset
impl Sync for TrackPreset
impl Unpin for TrackPreset
impl UnsafeUnpin for TrackPreset
impl UnwindSafe for TrackPreset
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