AccessibilityRole

Enum AccessibilityRole 

Source
#[repr(u8)]
pub enum AccessibilityRole {
Show 186 variants Unknown = 0, TextRun = 1, Cell = 2, Label = 3, Image = 4, Link = 5, Row = 6, ListItem = 7, ListMarker = 8, TreeItem = 9, ListBoxOption = 10, MenuItem = 11, MenuListOption = 12, Paragraph = 13, GenericContainer = 14, CheckBox = 15, RadioButton = 16, TextInput = 17, Button = 18, DefaultButton = 19, Pane = 20, RowHeader = 21, ColumnHeader = 22, RowGroup = 23, List = 24, Table = 25, LayoutTableCell = 26, LayoutTableRow = 27, LayoutTable = 28, Switch = 29, Menu = 30, MultilineTextInput = 31, SearchInput = 32, DateInput = 33, DateTimeInput = 34, WeekInput = 35, MonthInput = 36, TimeInput = 37, EmailInput = 38, NumberInput = 39, PasswordInput = 40, PhoneNumberInput = 41, UrlInput = 42, Abbr = 43, Alert = 44, AlertDialog = 45, Application = 46, Article = 47, Audio = 48, Banner = 49, Blockquote = 50, Canvas = 51, Caption = 52, Caret = 53, Code = 54, ColorWell = 55, ComboBox = 56, EditableComboBox = 57, Complementary = 58, Comment = 59, ContentDeletion = 60, ContentInsertion = 61, ContentInfo = 62, Definition = 63, DescriptionList = 64, DescriptionListDetail = 65, DescriptionListTerm = 66, Details = 67, Dialog = 68, Directory = 69, DisclosureTriangle = 70, Document = 71, EmbeddedObject = 72, Emphasis = 73, Feed = 74, FigureCaption = 75, Figure = 76, Footer = 77, FooterAsNonLandmark = 78, Form = 79, Grid = 80, Group = 81, Header = 82, HeaderAsNonLandmark = 83, Heading = 84, Iframe = 85, IframePresentational = 86, ImeCandidate = 87, Keyboard = 88, Legend = 89, LineBreak = 90, ListBox = 91, Log = 92, Main = 93, Mark = 94, Marquee = 95, Math = 96, MenuBar = 97, MenuItemCheckBox = 98, MenuItemRadio = 99, MenuListPopup = 100, Meter = 101, Navigation = 102, Note = 103, PluginObject = 104, Portal = 105, Pre = 106, ProgressIndicator = 107, RadioGroup = 108, Region = 109, RootWebArea = 110, Ruby = 111, RubyAnnotation = 112, ScrollBar = 113, ScrollView = 114, Search = 115, Section = 116, Slider = 117, SpinButton = 118, Splitter = 119, Status = 120, Strong = 121, Suggestion = 122, SvgRoot = 123, Tab = 124, TabList = 125, TabPanel = 126, Term = 127, Time = 128, Timer = 129, TitleBar = 130, Toolbar = 131, Tooltip = 132, Tree = 133, TreeGrid = 134, Video = 135, WebView = 136, Window = 137, PdfActionableHighlight = 138, PdfRoot = 139, GraphicsDocument = 140, GraphicsObject = 141, GraphicsSymbol = 142, DocAbstract = 143, DocAcknowledgements = 144, DocAfterword = 145, DocAppendix = 146, DocBackLink = 147, DocBiblioEntry = 148, DocBibliography = 149, DocBiblioRef = 150, DocChapter = 151, DocColophon = 152, DocConclusion = 153, DocCover = 154, DocCredit = 155, DocCredits = 156, DocDedication = 157, DocEndnote = 158, DocEndnotes = 159, DocEpigraph = 160, DocEpilogue = 161, DocErrata = 162, DocExample = 163, DocFootnote = 164, DocForeword = 165, DocGlossary = 166, DocGlossRef = 167, DocIndex = 168, DocIntroduction = 169, DocNoteRef = 170, DocNotice = 171, DocPageBreak = 172, DocPageFooter = 173, DocPageHeader = 174, DocPageList = 175, DocPart = 176, DocPreface = 177, DocPrologue = 178, DocPullquote = 179, DocQna = 180, DocSubtitle = 181, DocTip = 182, DocToc = 183, ListGrid = 184, Terminal = 185,
}
Expand description

The type of an accessibility node.

The majority of these roles come from the ARIA specification. Reference the latest draft for proper usage.

Like the AccessKit schema as a whole, this list is largely taken from Chromium. However, unlike Chromium’s alphabetized list, this list is ordered roughly by expected usage frequency (with the notable exception of Role::Unknown). This is more efficient in serialization formats where integers use a variable-length encoding.

Variants§

§

Unknown = 0

§

TextRun = 1

§

Cell = 2

§

Label = 3

§

Image = 4

§

Row = 6

§

ListItem = 7

§

ListMarker = 8

Contains the bullet, number, or other marker for a list item.

§

TreeItem = 9

§

ListBoxOption = 10

§

MenuItem = 11

§

MenuListOption = 12

§

Paragraph = 13

§

GenericContainer = 14

A generic container that should be ignored by assistive technologies and filtered out of platform accessibility trees. Equivalent to the ARIA none or presentation role, or to an HTML div with no role.

§

CheckBox = 15

§

RadioButton = 16

§

TextInput = 17

§

Button = 18

§

DefaultButton = 19

§

Pane = 20

§

RowHeader = 21

§

ColumnHeader = 22

§

RowGroup = 23

§

List = 24

§

Table = 25

§

LayoutTableCell = 26

§

LayoutTableRow = 27

§

LayoutTable = 28

§

Switch = 29

§

Menu = 30

§

MultilineTextInput = 31

§

SearchInput = 32

§

DateInput = 33

§

DateTimeInput = 34

§

WeekInput = 35

§

MonthInput = 36

§

TimeInput = 37

§

EmailInput = 38

§

NumberInput = 39

§

PasswordInput = 40

§

PhoneNumberInput = 41

§

UrlInput = 42

§

Abbr = 43

§

Alert = 44

§

AlertDialog = 45

§

Application = 46

§

Article = 47

§

Audio = 48

§

Banner = 49

§

Blockquote = 50

§

Canvas = 51

§

Caption = 52

§

Caret = 53

§

Code = 54

§

ColorWell = 55

§

ComboBox = 56

§

EditableComboBox = 57

§

Complementary = 58

§

Comment = 59

§

ContentDeletion = 60

§

ContentInsertion = 61

§

ContentInfo = 62

§

Definition = 63

§

DescriptionList = 64

§

DescriptionListDetail = 65

§

DescriptionListTerm = 66

§

Details = 67

§

Dialog = 68

§

Directory = 69

§

DisclosureTriangle = 70

§

Document = 71

§

EmbeddedObject = 72

§

Emphasis = 73

§

Feed = 74

§

FigureCaption = 75

§

Figure = 76

§

Footer = 77

§

FooterAsNonLandmark = 78

§

Form = 79

§

Grid = 80

§

Group = 81

§

Header = 82

§

HeaderAsNonLandmark = 83

§

Heading = 84

§

Iframe = 85

§

IframePresentational = 86

§

ImeCandidate = 87

§

Keyboard = 88

§

Legend = 89

§

LineBreak = 90

§

ListBox = 91

§

Log = 92

§

Main = 93

§

Mark = 94

§

Marquee = 95

§

Math = 96

§

MenuBar = 97

§

MenuItemCheckBox = 98

§

MenuItemRadio = 99

§

MenuListPopup = 100

§

Meter = 101

§

Navigation = 102

§

Note = 103

§

PluginObject = 104

§

Portal = 105

§

Pre = 106

§

ProgressIndicator = 107

§

RadioGroup = 108

§

Region = 109

§

RootWebArea = 110

§

Ruby = 111

§

RubyAnnotation = 112

§

ScrollBar = 113

§

ScrollView = 114

§

Search = 115

§

Section = 116

§

Slider = 117

§

SpinButton = 118

§

Splitter = 119

§

Status = 120

§

Strong = 121

§

Suggestion = 122

§

SvgRoot = 123

§

Tab = 124

§

TabList = 125

§

TabPanel = 126

§

Term = 127

§

Time = 128

§

Timer = 129

§

TitleBar = 130

§

Toolbar = 131

§

Tooltip = 132

§

Tree = 133

§

TreeGrid = 134

§

Video = 135

§

WebView = 136

§

Window = 137

§

PdfActionableHighlight = 138

§

PdfRoot = 139

§

GraphicsDocument = 140

§

GraphicsObject = 141

§

GraphicsSymbol = 142

§

DocAbstract = 143

§

DocAcknowledgements = 144

§

DocAfterword = 145

§

DocAppendix = 146

§

DocBiblioEntry = 148

§

DocBibliography = 149

§

DocBiblioRef = 150

§

DocChapter = 151

§

DocColophon = 152

§

DocConclusion = 153

§

DocCover = 154

§

DocCredit = 155

§

DocCredits = 156

§

DocDedication = 157

§

DocEndnote = 158

§

DocEndnotes = 159

§

DocEpigraph = 160

§

DocEpilogue = 161

§

DocErrata = 162

§

DocExample = 163

§

DocFootnote = 164

§

DocForeword = 165

§

DocGlossary = 166

§

DocGlossRef = 167

§

DocIndex = 168

§

DocIntroduction = 169

§

DocNoteRef = 170

§

DocNotice = 171

§

DocPageBreak = 172

§

DocPageFooter = 173

§

DocPageHeader = 174

§

DocPageList = 175

§

DocPart = 176

§

DocPreface = 177

§

DocPrologue = 178

§

DocPullquote = 179

§

DocQna = 180

§

DocSubtitle = 181

§

DocTip = 182

§

DocToc = 183

§

ListGrid = 184

Behaves similar to an ARIA grid but is primarily used by Chromium’s TableView and its subclasses, so they can be exposed correctly on certain platforms.

§

Terminal = 185

This is just like a multi-line document, but signals that assistive technologies should implement behavior specific to a VT-100-style terminal.

Trait Implementations§

Source§

impl Clone for Role

Source§

fn clone(&self) -> Role

Returns a duplicate of the value. Read more
1.0.0§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Role

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Source§

impl Default for Role

Source§

fn default() -> Role

Returns the “default value” for a type. Read more
Source§

impl Hash for Role

Source§

fn hash<__H>(&self, state: &mut __H)
where __H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl Ord for Role

Source§

fn cmp(&self, other: &Role) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
Source§

impl PartialEq for Role

Source§

fn eq(&self, other: &Role) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialOrd for Role

Source§

fn partial_cmp(&self, other: &Role) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl Copy for Role

Source§

impl Eq for Role

Source§

impl StructuralPartialEq for Role

Auto Trait Implementations§

§

impl Freeze for Role

§

impl RefUnwindSafe for Role

§

impl Send for Role

§

impl Sync for Role

§

impl Unpin for Role

§

impl UnwindSafe for Role

Blanket Implementations§

§

impl<T> Any for T
where T: 'static + ?Sized,

§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

impl<T> Borrow<T> for T
where T: ?Sized,

§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
§

impl<T> BorrowMut<T> for T
where T: ?Sized,

§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<T> CloneToUninit for T
where T: Clone,

§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> ComponentProps for T
where T: Any + PartialEq,

Source§

fn changed(&self, other: &(dyn ComponentProps + 'static)) -> bool

Source§

impl<T> Downcast for T
where T: Any,

Source§

fn into_any(self: Box<T>) -> Box<dyn Any>

Convert Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.
Source§

fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>

Convert Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be further downcast into Rc<ConcreteType> where ConcreteType implements Trait.
Source§

fn as_any(&self) -> &(dyn Any + 'static)

Convert &Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &Any’s vtable from &Trait’s.
Source§

fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)

Convert &mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &mut Any’s vtable from &mut Trait’s.
Source§

impl<T> DowncastSync for T
where T: Any + Send + Sync,

Source§

fn into_any_arc(self: Arc<T>) -> Arc<dyn Any + Sync + Send>

Convert Arc<Trait> (where Trait: Downcast) to Arc<Any>. Arc<Any> can then be further downcast into Arc<ConcreteType> where ConcreteType implements Trait.
§

impl<T> From<T> for T

§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
§

impl<T, U> Into<U> for T
where U: From<T>,

§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

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 more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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
§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more