pub trait StereoPannerNodeMethods {
    // Required methods
    fn Pan(&self) -> Root<Dom<AudioParam>>;
    fn Constructor(
        global: &Window,
        proto: Option<HandleObject<'_>>,
        can_gc: CanGc,
        context: &BaseAudioContext,
        options: &StereoPannerOptions,
    ) -> Result<Root<Dom<StereoPannerNode>>, Error>;
}

Required Methods§

source

fn Pan(&self) -> Root<Dom<AudioParam>>

source

fn Constructor( global: &Window, proto: Option<HandleObject<'_>>, can_gc: CanGc, context: &BaseAudioContext, options: &StereoPannerOptions, ) -> Result<Root<Dom<StereoPannerNode>>, Error>

Object Safety§

This trait is not object safe.

Implementors§