pub(crate) trait BiquadFilterNodeMethods<D: DomTypes> {
    // Required methods
    fn Type(&self) -> BiquadFilterType;
    fn SetType(&self, value: BiquadFilterType);
    fn Frequency(&self) -> Root<Dom<AudioParam>>;
    fn Detune(&self) -> Root<Dom<AudioParam>>;
    fn Q(&self) -> Root<Dom<AudioParam>>;
    fn Gain(&self) -> Root<Dom<AudioParam>>;
    fn Constructor(
        global: &Window,
        proto: Option<HandleObject<'_>>,
        can_gc: CanGc,
        context: &BaseAudioContext,
        options: &BiquadFilterOptions,
    ) -> Result<Root<Dom<BiquadFilterNode>>, Error>;
}

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§