pub enum AccessibilityIssueKind {
NoName,
SameName,
SmallTarget,
OutOfOrder,
NoPaneTitle,
UnnamedImage,
}Expand description
One kind of thing a reader user trips over.
Variants§
NoName
A control a reader can press or type into has nothing to say.
SameName
Two controls of one role say the same name, so a reader user cannot tell them apart.
SmallTarget
A control’s target is under MINIMUM_TARGET_SIZE on a side.
OutOfOrder
A control sits fully above the one a reader visits before it, with
no traversal_index to say so on purpose.
NoPaneTitle
No node names the screen, so a reader says nothing on arrival.
UnnamedImage
A picture a reader stops on with no words for it.
Implementations§
Trait Implementations§
Source§impl Clone for AccessibilityIssueKind
impl Clone for AccessibilityIssueKind
Source§fn clone(&self) -> AccessibilityIssueKind
fn clone(&self) -> AccessibilityIssueKind
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for AccessibilityIssueKind
Source§impl Debug for AccessibilityIssueKind
impl Debug for AccessibilityIssueKind
impl Eq for AccessibilityIssueKind
Source§impl Hash for AccessibilityIssueKind
impl Hash for AccessibilityIssueKind
Source§impl PartialEq for AccessibilityIssueKind
impl PartialEq for AccessibilityIssueKind
impl StructuralPartialEq for AccessibilityIssueKind
Auto Trait Implementations§
impl Freeze for AccessibilityIssueKind
impl RefUnwindSafe for AccessibilityIssueKind
impl Send for AccessibilityIssueKind
impl Sync for AccessibilityIssueKind
impl Unpin for AccessibilityIssueKind
impl UnsafeUnpin for AccessibilityIssueKind
impl UnwindSafe for AccessibilityIssueKind
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