1 2 3 4 5 6 7 8 9 10 11
pub enum FloatingLabelBehavior { Never = 0, Auto = 1, Always = 2, } impl Default for FloatingLabelBehavior { fn default() -> Self { Self::Auto } }