Enum rfmod::DspDelay
[−]
[src]
#[repr(C)]pub enum DspDelay { CH0, CH1, CH2, CH3, CH4, CH5, CH6, CH7, CH8, CH9, CH10, CH11, CH12, CH13, CH14, CH15, MaxDelay, }
Parameter types for the FMOD_DSP_TYPE_DELAY filter.
Used with Dsp::set_parameter and
Dsp::get_parameter
Variants
CH0Channel #0 Delay in ms. 0 to 10000. Default = 0.
CH1Channel #1 Delay in ms. 0 to 10000. Default = 0.
CH2Channel #2 Delay in ms. 0 to 10000. Default = 0.
CH3Channel #3 Delay in ms. 0 to 10000. Default = 0.
CH4Channel #4 Delay in ms. 0 to 10000. Default = 0.
CH5Channel #5 Delay in ms. 0 to 10000. Default = 0.
CH6Channel #6 Delay in ms. 0 to 10000. Default = 0.
CH7Channel #7 Delay in ms. 0 to 10000. Default = 0.
CH8Channel #8 Delay in ms. 0 to 10000. Default = 0.
CH9Channel #9 Delay in ms. 0 to 10000. Default = 0.
CH10Channel #10 Delay in ms. 0 to 10000. Default = 0.
CH11Channel #11 Delay in ms. 0 to 10000. Default = 0.
CH12Channel #12 Delay in ms. 0 to 10000. Default = 0.
CH13Channel #13 Delay in ms. 0 to 10000. Default = 0.
CH14Channel #14 Delay in ms. 0 to 10000. Default = 0.
CH15Channel #15 Delay in ms. 0 to 10000. Default = 0.
MaxDelayMaximum delay in ms. 0 to 10000. Default = 10.
Trait Implementations
impl Clone for DspDelay[src]
fn clone(&self) -> DspDelay[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl PartialEq for DspDelay[src]
fn eq(&self, __arg_0: &DspDelay) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Rhs) -> bool1.0.0[src]
This method tests for !=.
impl PartialOrd for DspDelay[src]
fn partial_cmp(&self, __arg_0: &DspDelay) -> Option<Ordering>[src]
This method returns an ordering between self and other values if one exists. Read more
fn lt(&self, other: &Rhs) -> bool1.0.0[src]
This method tests less than (for self and other) and is used by the < operator. Read more
fn le(&self, other: &Rhs) -> bool1.0.0[src]
This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
fn gt(&self, other: &Rhs) -> bool1.0.0[src]
This method tests greater than (for self and other) and is used by the > operator. Read more
fn ge(&self, other: &Rhs) -> bool1.0.0[src]
This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more