ParamId

Enum ParamId 

Source
#[repr(u8)]
pub enum ParamId {
Show 45 variants Interpolation = 0, LowCutEnabled = 1, HighCutEnabled = 2, InputMix = 3, LowCut = 4, HighCut = 5, DryOut = 6, EarlyOut = 7, LateOut = 8, TapEnabled = 9, TapCount = 10, TapDecay = 11, TapPredelay = 12, TapLength = 13, EarlyDiffuseEnabled = 14, EarlyDiffuseCount = 15, EarlyDiffuseDelay = 16, EarlyDiffuseModAmount = 17, EarlyDiffuseFeedback = 18, EarlyDiffuseModRate = 19, LateMode = 20, LateLineCount = 21, LateDiffuseEnabled = 22, LateDiffuseCount = 23, LateLineSize = 24, LateLineModAmount = 25, LateDiffuseDelay = 26, LateDiffuseModAmount = 27, LateLineDecay = 28, LateLineModRate = 29, LateDiffuseFeedback = 30, LateDiffuseModRate = 31, EqLowShelfEnabled = 32, EqHighShelfEnabled = 33, EqLowpassEnabled = 34, EqLowFreq = 35, EqHighFreq = 36, EqCutoff = 37, EqLowGain = 38, EqHighGain = 39, EqCrossSeed = 40, SeedTap = 41, SeedDiffusion = 42, SeedDelay = 43, SeedPostDiffusion = 44,
}
Expand description

Parameter identifiers matching CloudSeedCore/Parameters.h

Variants§

§

Interpolation = 0

§

LowCutEnabled = 1

§

HighCutEnabled = 2

§

InputMix = 3

§

LowCut = 4

§

HighCut = 5

§

DryOut = 6

§

EarlyOut = 7

§

LateOut = 8

§

TapEnabled = 9

§

TapCount = 10

§

TapDecay = 11

§

TapPredelay = 12

§

TapLength = 13

§

EarlyDiffuseEnabled = 14

§

EarlyDiffuseCount = 15

§

EarlyDiffuseDelay = 16

§

EarlyDiffuseModAmount = 17

§

EarlyDiffuseFeedback = 18

§

EarlyDiffuseModRate = 19

§

LateMode = 20

§

LateLineCount = 21

§

LateDiffuseEnabled = 22

§

LateDiffuseCount = 23

§

LateLineSize = 24

§

LateLineModAmount = 25

§

LateDiffuseDelay = 26

§

LateDiffuseModAmount = 27

§

LateLineDecay = 28

§

LateLineModRate = 29

§

LateDiffuseFeedback = 30

§

LateDiffuseModRate = 31

§

EqLowShelfEnabled = 32

§

EqHighShelfEnabled = 33

§

EqLowpassEnabled = 34

§

EqLowFreq = 35

§

EqHighFreq = 36

§

EqCutoff = 37

§

EqLowGain = 38

§

EqHighGain = 39

§

EqCrossSeed = 40

§

SeedTap = 41

§

SeedDiffusion = 42

§

SeedDelay = 43

§

SeedPostDiffusion = 44

Trait Implementations§

Source§

impl Clone for ParamId

Source§

fn clone(&self) -> ParamId

Returns a duplicate of the value. Read more
1.0.0 · Source§

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

Performs copy-assignment from source. Read more
Source§

impl Debug for ParamId

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl From<ParamId> for u8

Source§

fn from(enum_value: ParamId) -> Self

Converts to this type from the input type.
Source§

impl PartialEq for ParamId

Source§

fn eq(&self, other: &ParamId) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

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

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl TryFrom<u8> for ParamId

Source§

type Error = TryFromPrimitiveError<ParamId>

The type returned in the event of a conversion error.
Source§

fn try_from(number: u8) -> Result<Self, TryFromPrimitiveError<Self>>

Performs the conversion.
Source§

impl TryFromPrimitive for ParamId

Source§

impl Copy for ParamId

Source§

impl Eq for ParamId

Source§

impl StructuralPartialEq for ParamId

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.