Enum gtk4::accessible::Property
source · #[non_exhaustive]
pub enum Property<'p> {
Show 19 variants
Autocomplete(AccessibleAutocomplete),
Description(&'p str),
HasPopup(bool),
KeyShortcuts(&'p str),
Label(&'p str),
Level(i32),
Modal(bool),
MultiLine(bool),
MultiSelectable(bool),
Orientation(Orientation),
Placeholder(&'p str),
ReadOnly(bool),
Required(bool),
RoleDescription(&'p str),
Sort(AccessibleSort),
ValueMax(f64),
ValueMin(f64),
ValueNow(f64),
ValueText(&'p str),
}
Expand description
Type-safe enum container for AccessibleProperty
values.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.