1 #![allow(unused_imports)]
2 use wasm_bindgen::prelude::*;
3 #[wasm_bindgen]
4 #[doc = "The `PositionAlignSetting` enum."]
5 #[doc = ""]
6 #[doc = "*This API requires the following crate features to be activated: `PositionAlignSetting`*"]
7 #[derive(Debug, Clone, Copy, PartialEq, Eq)]
8 pub enum PositionAlignSetting {
9     LineLeft = "line-left",
10     Center = "center",
11     LineRight = "line-right",
12     Auto = "auto",
13 }
14