maxcountryman_web_sys/features/gen_FillMode.rs
1#![allow(unused_imports)]
2use wasm_bindgen::prelude::*;
3#[wasm_bindgen]
4#[doc = "The `FillMode` enum."]
5#[doc = ""]
6#[doc = "*This API requires the following crate features to be activated: `FillMode`*"]
7#[derive(Debug, Clone, Copy, PartialEq, Eq)]
8pub enum FillMode {
9 None = "none",
10 Forwards = "forwards",
11 Backwards = "backwards",
12 Both = "both",
13 Auto = "auto",
14}