Struct m8_files::SynthParams
source · pub struct SynthParams {Show 15 fields
pub volume: u8,
pub pitch: u8,
pub fine_tune: u8,
pub filter_type: u8,
pub filter_cutoff: u8,
pub filter_res: u8,
pub amp: u8,
pub limit: u8,
pub mixer_pan: u8,
pub mixer_dry: u8,
pub mixer_chorus: u8,
pub mixer_delay: u8,
pub mixer_reverb: u8,
pub envelopes: [Envelope; 2],
pub lfos: [LFO; 2],
}Fields§
§volume: u8§pitch: u8§fine_tune: u8§filter_type: u8§filter_cutoff: u8§filter_res: u8§amp: u8§limit: u8§mixer_pan: u8§mixer_dry: u8§mixer_chorus: u8§mixer_delay: u8§mixer_reverb: u8§envelopes: [Envelope; 2]§lfos: [LFO; 2]Trait Implementations§
source§impl Clone for SynthParams
impl Clone for SynthParams
source§fn clone(&self) -> SynthParams
fn clone(&self) -> SynthParams
Returns a copy 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 SynthParams
impl Debug for SynthParams
source§impl PartialEq<SynthParams> for SynthParams
impl PartialEq<SynthParams> for SynthParams
source§fn eq(&self, other: &SynthParams) -> bool
fn eq(&self, other: &SynthParams) -> bool
This method tests for
self and other values to be equal, and is used
by ==.