#[repr(C)]pub enum AccessibilityState {
Show 16 variants
Unavailable = 0,
Selected = 1,
Focused = 2,
Checked = 3,
Readonly = 4,
Default = 5,
Expanded = 6,
Collapsed = 7,
Busy = 8,
Offscreen = 9,
Focusable = 10,
Selectable = 11,
Linked = 12,
Traversed = 13,
Multiselectable = 14,
Protected = 15,
}Expand description
MSAA accessibility state. For information on what each state does, see the [MSDN State Constants](https://docs.microsoft.com/en-us/windows/win32/winauto/object-state-constants) page.
Variants§
Selected = 1
Focused = 2
Checked = 3
Readonly = 4
Default = 5
Expanded = 6
Collapsed = 7
Busy = 8
Offscreen = 9
Focusable = 10
Selectable = 11
Linked = 12
Traversed = 13
Multiselectable = 14
Protected = 15
Trait Implementations§
Source§impl Clone for AccessibilityState
impl Clone for AccessibilityState
Source§fn clone(&self) -> AccessibilityState
fn clone(&self) -> AccessibilityState
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AccessibilityState
impl Debug for AccessibilityState
Source§impl FromIterator<AccessibilityState> for AccessibilityStateVec
impl FromIterator<AccessibilityState> for AccessibilityStateVec
Source§fn from_iter<T>(iter: T) -> Selfwhere
T: IntoIterator<Item = AccessibilityState>,
fn from_iter<T>(iter: T) -> Selfwhere
T: IntoIterator<Item = AccessibilityState>,
Creates a value from an iterator. Read more
Source§impl Hash for AccessibilityState
impl Hash for AccessibilityState
Source§impl Ord for AccessibilityState
impl Ord for AccessibilityState
Source§fn cmp(&self, other: &AccessibilityState) -> Ordering
fn cmp(&self, other: &AccessibilityState) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for AccessibilityState
impl PartialEq for AccessibilityState
Source§impl PartialOrd for AccessibilityState
impl PartialOrd for AccessibilityState
impl Copy for AccessibilityState
impl Eq for AccessibilityState
impl StructuralPartialEq for AccessibilityState
Auto Trait Implementations§
impl Freeze for AccessibilityState
impl RefUnwindSafe for AccessibilityState
impl Send for AccessibilityState
impl Sync for AccessibilityState
impl Unpin for AccessibilityState
impl UnwindSafe for AccessibilityState
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more