pub trait OscillatorNodeMethods {
    // Required methods
    fn Type(&self) -> OscillatorType;
    fn SetType(&self, value: OscillatorType) -> Result<(), Error>;
    fn Frequency(&self) -> Root<Dom<AudioParam>>;
    fn Detune(&self) -> Root<Dom<AudioParam>>;
}

Required Methods§

Implementors§