Enum rsrl::Parameter [] [src]

pub enum Parameter {
    Fixed(f64),
    Exponential {
        init: f64,
        floor: f64,
        tau: f64,
        count: u32,
    },
    Polynomial {
        init: f64,
        floor: f64,
        tau: f64,
        count: u32,
    },
    Boyan {
        init: f64,
        floor: f64,
        n0: u32,
        count: u32,
    },
    GHC {
        init: f64,
        floor: f64,
        tau: f64,
        count: u32,
    },
}

Variants

Fields of Exponential

Fields of Polynomial

Fields of Boyan

Fields of GHC

Methods

impl Parameter
[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

Trait Implementations

impl Clone for Parameter
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for Parameter
[src]

impl Add<f64> for Parameter
[src]

The resulting type after applying the + operator.

[src]

Performs the + operation.

impl Add<Parameter> for Parameter
[src]

The resulting type after applying the + operator.

[src]

Performs the + operation.

impl Sub<f64> for Parameter
[src]

The resulting type after applying the - operator.

[src]

Performs the - operation.

impl Sub<Parameter> for Parameter
[src]

The resulting type after applying the - operator.

[src]

Performs the - operation.

impl Mul<f64> for Parameter
[src]

The resulting type after applying the * operator.

[src]

Performs the * operation.

impl Mul<Parameter> for Parameter
[src]

The resulting type after applying the * operator.

[src]

Performs the * operation.

impl Div<f64> for Parameter
[src]

The resulting type after applying the / operator.

[src]

Performs the / operation.

impl Div<Parameter> for Parameter
[src]

The resulting type after applying the / operator.

[src]

Performs the / operation.