#[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.
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)
Trait Implementations§
Auto Trait Implementations§
impl<'p> Freeze for Property<'p>
impl<'p> RefUnwindSafe for Property<'p>
impl<'p> Send for Property<'p>
impl<'p> Sync for Property<'p>
impl<'p> Unpin for Property<'p>
impl<'p> UnwindSafe for Property<'p>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more