#[repr(u32)]pub enum DspType {
Show 37 variants
Unknown = 0,
Mixer = 1,
Oscillator = 2,
Lowpass = 3,
ItLowpass = 4,
Highpass = 5,
Echo = 6,
Fader = 7,
Flange = 8,
Distortion = 9,
Normalize = 10,
Limiter = 11,
ParamEq = 12,
PitchShift = 13,
Chorus = 14,
VstPlugin = 15,
WinampPlugin = 16,
ItEcho = 17,
Compressor = 18,
SfxReverb = 19,
LowpassSimple = 20,
Delay = 21,
Tremolo = 22,
LadspaPlugin = 23,
Send = 24,
Return = 25,
HighpassSimple = 26,
Pan = 27,
ThreeEq = 28,
Fft = 29,
LoudnessMeter = 30,
EnvelopeFollower = 31,
ConvolutionReverb = 32,
ChannelMix = 33,
Transceiver = 34,
ObjectPan = 35,
MultibandEq = 36,
}Variants§
Unknown = 0
Mixer = 1
Oscillator = 2
Lowpass = 3
ItLowpass = 4
Highpass = 5
Echo = 6
Fader = 7
Flange = 8
Distortion = 9
Normalize = 10
Limiter = 11
ParamEq = 12
PitchShift = 13
Chorus = 14
VstPlugin = 15
WinampPlugin = 16
ItEcho = 17
Compressor = 18
SfxReverb = 19
LowpassSimple = 20
Delay = 21
Tremolo = 22
LadspaPlugin = 23
Send = 24
Return = 25
HighpassSimple = 26
Pan = 27
ThreeEq = 28
Fft = 29
LoudnessMeter = 30
EnvelopeFollower = 31
ConvolutionReverb = 32
ChannelMix = 33
Transceiver = 34
ObjectPan = 35
MultibandEq = 36
Trait Implementations§
source§impl PartialEq for DspType
impl PartialEq for DspType
source§impl TryFrom<u32> for DspType
impl TryFrom<u32> for DspType
§type Error = TryFromPrimitiveError<DspType>
type Error = TryFromPrimitiveError<DspType>
The type returned in the event of a conversion error.
source§impl TryFromPrimitive for DspType
impl TryFromPrimitive for DspType
source§impl UnsafeFromPrimitive for DspType
impl UnsafeFromPrimitive for DspType
type Primitive = u32
source§unsafe fn unchecked_transmute_from(number: Self::Primitive) -> Self
unsafe fn unchecked_transmute_from(number: Self::Primitive) -> Self
Transmutes into an enum from its primitive. Read more
source§unsafe fn from_unchecked(number: Self::Primitive) -> Self
unsafe fn from_unchecked(number: Self::Primitive) -> Self
👎Deprecated since 0.6.0: Prefer to use
unchecked_transmute_from, from_unchecked will be removed in a future release.Transmutes into an enum from its primitive. Read more
impl Copy for DspType
impl Eq for DspType
impl StructuralPartialEq for DspType
Auto Trait Implementations§
impl Freeze for DspType
impl RefUnwindSafe for DspType
impl Send for DspType
impl Sync for DspType
impl Unpin for DspType
impl UnwindSafe for DspType
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more