Enum rsynth::backend::vst_backend::vst::plugin::Category[]

#[repr(usize)]pub enum Category {
    Unknown,
    Effect,
    Synth,
    Analysis,
    Mastering,
    Spacializer,
    RoomFx,
    SurroundFx,
    Restoration,
    OfflineProcess,
    Shell,
    Generator,
}

Plugin type. Generally either Effect or Synth.

Other types are not necessary to build a plugin and are only useful for the host to categorize the plugin.

Variants

Unknown

Unknown / not implemented

Effect

Any effect

Synth

VST instrument

Analysis

Scope, tuner, spectrum analyser, etc.

Mastering

Dynamics, etc.

Spacializer

Panners, etc.

RoomFx

Delays and Reverbs

SurroundFx

Dedicated surround processor.

Restoration

Denoiser, etc.

OfflineProcess

Offline processing.

Shell

Contains other plugins.

Generator

Tone generator, etc.

Trait Implementations

impl Clone for Category

impl Copy for Category

impl Debug for Category

impl From<i16> for Category

impl From<i32> for Category

impl From<i64> for Category

impl From<i8> for Category

impl From<isize> for Category

impl From<u16> for Category

impl From<u32> for Category

impl From<u64> for Category

impl From<u8> for Category

impl From<usize> for Category

impl Into<i16> for Category

impl Into<i32> for Category

impl Into<i64> for Category

impl Into<i8> for Category

impl Into<isize> for Category

impl Into<u16> for Category

impl Into<u32> for Category

impl Into<u64> for Category

impl Into<u8> for Category

impl Into<usize> for Category

Auto Trait Implementations

impl RefUnwindSafe for Category

impl Send for Category

impl Sync for Category

impl Unpin for Category

impl UnwindSafe for Category

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<S, T> Duplex<S> for T where
    T: FromSample<S> + ToSample<S>, 

impl<T> From<T> for T[src]

impl<S> FromSample<S> for S

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> ToSample<U> for T where
    U: FromSample<T>, 

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.