Skip to main content

web_sys/features/
gen_BiquadFilterType.rs

1#![allow(unused_imports)]
2#![allow(clippy::all)]
3use wasm_bindgen::prelude::*;
4#[wasm_bindgen]
5#[doc = "The `BiquadFilterType` enum."]
6#[doc = ""]
7#[doc = "*This API requires the following crate features to be activated: `BiquadFilterType`*"]
8#[derive(Debug, Clone, Copy, PartialEq, Eq)]
9pub enum BiquadFilterType {
10    Lowpass = "lowpass",
11    Highpass = "highpass",
12    Bandpass = "bandpass",
13    Lowshelf = "lowshelf",
14    Highshelf = "highshelf",
15    Peaking = "peaking",
16    Notch = "notch",
17    Allpass = "allpass",
18}