Enum Role

#[repr(u8)]
pub enum Role {
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§

§

impl Clone for Role

§

fn clone(&self) -> Role

Returns a duplicate of the value. Read more
1.0.0 · Source§

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

Performs copy-assignment from source. Read more
§

impl Debug for Role

§

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

Formats the value using the given formatter. Read more
§

impl Default for Role

§

fn default() -> Role

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

impl Hash for Role

§

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

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

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
§

impl Ord for Role

§

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

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

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

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

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

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

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

Restrict a value to a certain interval. Read more
§

impl PartialEq for Role

§

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

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

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

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

impl PartialOrd for Role

§

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

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

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

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

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

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

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

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

impl Copy for Role

§

impl Eq for Role

§

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§

Source§

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

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

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

§

fn equals(&self, other: &(dyn Any + 'static)) -> bool

§

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

Source§

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

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

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

Source§

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

Mutably borrows from an owned value. Read more
Source§

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

Source§

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
§

impl<Q, K> Comparable<K> for Q
where Q: Ord + ?Sized, K: Borrow<Q> + ?Sized,

§

fn compare(&self, key: &K) -> Ordering

Compare self to key and return their ordering.
§

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

§

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.
§

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.
§

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.
§

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.
§

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

§

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<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

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

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

fn in_current_span(self) -> Instrumented<Self>

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

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

Source§

fn into(self) -> U

Calls U::from(self).

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

§

impl<T> NoneValue for T
where T: Default,

§

type NoneType = T

§

fn null_value() -> T

The none-equivalent value.
Source§

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

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

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

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

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

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

Source§

type Error = Infallible

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

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

Performs the conversion.
Source§

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

Source§

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

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

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

Performs the conversion.
§

impl<T> WithSubscriber for T

§

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
§

fn with_current_subscriber(self) -> WithDispatch<Self>

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