Enum oxcable::oscillator::Waveform [] [src]

pub enum Waveform {
    Sine,
    Saw(AntialiasType),
    Square(AntialiasType),
    Tri(AntialiasType),
    WhiteNoise,
    PulseTrain,
}

Oscillator waveforms.

Variants

Sine

A sine wave.

Saw

A saw wave.

Square

A square wave.

Tri

A triangle wave.

WhiteNoise

Pure white noise.

PulseTrain

A series of impulses.

Trait Implementations

Derived Implementations

impl Debug for Waveform

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

impl Copy for Waveform

impl Clone for Waveform

fn clone(&self) -> Waveform

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