1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
use crate::__string_enum; #[derive(Debug, Clone)] #[cfg_attr(test, derive(PartialEq))] pub enum LineRule { Auto, Exact, AtLeast, } __string_enum! { LineRule { Auto = "auto", Exact = "exact", AtLeast = "atLeast", } }