Enum rfmod::DspDelay [] [src]

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

CH0

Channel #0 Delay in ms. 0 to 10000. Default = 0.

CH1

Channel #1 Delay in ms. 0 to 10000. Default = 0.

CH2

Channel #2 Delay in ms. 0 to 10000. Default = 0.

CH3

Channel #3 Delay in ms. 0 to 10000. Default = 0.

CH4

Channel #4 Delay in ms. 0 to 10000. Default = 0.

CH5

Channel #5 Delay in ms. 0 to 10000. Default = 0.

CH6

Channel #6 Delay in ms. 0 to 10000. Default = 0.

CH7

Channel #7 Delay in ms. 0 to 10000. Default = 0.

CH8

Channel #8 Delay in ms. 0 to 10000. Default = 0.

CH9

Channel #9 Delay in ms. 0 to 10000. Default = 0.

CH10

Channel #10 Delay in ms. 0 to 10000. Default = 0.

CH11

Channel #11 Delay in ms. 0 to 10000. Default = 0.

CH12

Channel #12 Delay in ms. 0 to 10000. Default = 0.

CH13

Channel #13 Delay in ms. 0 to 10000. Default = 0.

CH14

Channel #14 Delay in ms. 0 to 10000. Default = 0.

CH15

Channel #15 Delay in ms. 0 to 10000. Default = 0.

MaxDelay

Maximum delay in ms. 0 to 10000. Default = 10.

Trait Implementations

impl Copy for DspDelay
[src]

impl Debug for DspDelay
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl PartialOrd for DspDelay
[src]

fn partial_cmp(&self, __arg_0: &DspDelay) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more

fn lt(&self, other: &Rhs) -> bool
1.0.0

This method tests less than (for self and other) and is used by the < operator. Read more

fn le(&self, other: &Rhs) -> bool
1.0.0

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) -> bool
1.0.0

This method tests greater than (for self and other) and is used by the > operator. Read more

fn ge(&self, other: &Rhs) -> bool
1.0.0

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl PartialEq for DspDelay
[src]

fn eq(&self, __arg_0: &DspDelay) -> bool

This method tests for self and other values to be equal, and is used by ==. Read more

fn ne(&self, other: &Rhs) -> bool
1.0.0

This method tests for !=.

impl Clone for DspDelay
[src]

fn clone(&self) -> DspDelay

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more