atspi

Enum Interface

source
#[repr(u32)]
pub enum Interface {
Show 20 variants Accessible = 1, Action = 2, Application = 4, Cache = 8, Collection = 16, Component = 32, Document = 64, DeviceEventController = 128, DeviceEventListener = 256, EditableText = 512, Hyperlink = 1_024, Hypertext = 2_048, Image = 4_096, Registry = 8_192, Selection = 16_384, Socket = 32_768, Table = 65_536, TableCell = 131_072, Text = 262_144, Value = 524_288,
}
Expand description

AT-SPI interfaces an accessible object can implement.

Variants§

§

Accessible = 1

Interface to indicate implementation of AccessibleProxy.

§

Action = 2

Interface to indicate implementation of ActionProxy.

§

Application = 4

Interface to indicate implementation of ApplicationProxy.

§

Cache = 8

Interface to indicate implementation of CacheProxy.

§

Collection = 16

Interface to indicate implementation of CollectionProxy.

§

Component = 32

Interface to indicate implementation of ComponentProxy.

§

Document = 64

Interface to indicate implementation of DocumentProxy.

§

DeviceEventController = 128

Interface to indicate implementation of DeviceEventControllerProxy.

§

DeviceEventListener = 256

Interface to indicate implementation of DeviceEventListenerProxy.

§

EditableText = 512

Interface to indicate implementation of EditableTextProxy.

Interface to indicate implementation of HyperlinkProxy.

§

Hypertext = 2_048

Interface to indicate implementation of HypertextProxy.

§

Image = 4_096

Interface to indicate implementation of ImageProxy.

§

Registry = 8_192

Interface to indicate implementation of RegistryProxy.

§

Selection = 16_384

Interface to indicate implementation of SelectionProxy.

§

Socket = 32_768

Interface to indicate implementation of SocketProxy.

§

Table = 65_536

Interface to indicate implementation of TableProxy.

§

TableCell = 131_072

Interface to indicate implementation of TableCellProxy.

§

Text = 262_144

Interface to indicate implementation of TextProxy.

§

Value = 524_288

Interface to indicate implementation of ValueProxy.

Trait Implementations§

source§

impl BitAnd for Interface

source§

type Output = BitFlags<Interface>

The resulting type after applying the & operator.
source§

fn bitand(self, other: Interface) -> <Interface as BitAnd>::Output

Performs the & operation. Read more
source§

impl BitFlag for Interface

source§

fn empty() -> BitFlags<Self>

Create a BitFlags with no flags set (in other words, with a value of 0). Read more
source§

fn all() -> BitFlags<Self>

Create a BitFlags with all flags set. Read more
source§

fn from_bits(bits: Self::Numeric) -> Result<BitFlags<Self>, FromBitsError<Self>>

Create a BitFlags if the raw value provided does not contain any illegal flags. Read more
source§

fn from_bits_truncate(bits: Self::Numeric) -> BitFlags<Self>

Create a BitFlags from an underlying bitwise value. If any invalid bits are set, ignore them. Read more
source§

unsafe fn from_bits_unchecked(bits: Self::Numeric) -> BitFlags<Self>

Create a BitFlags unsafely, without checking if the bits form a valid bit pattern for the type. Read more
source§

impl BitOr for Interface

source§

type Output = BitFlags<Interface>

The resulting type after applying the | operator.
source§

fn bitor(self, other: Interface) -> <Interface as BitOr>::Output

Performs the | operation. Read more
source§

impl BitXor for Interface

source§

type Output = BitFlags<Interface>

The resulting type after applying the ^ operator.
source§

fn bitxor(self, other: Interface) -> <Interface as BitXor>::Output

Performs the ^ operation. Read more
source§

impl Clone for Interface

source§

fn clone(&self) -> Interface

Returns a copy of the value. Read more
1.0.0 · source§

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

Performs copy-assignment from source. Read more
source§

impl Debug for Interface

source§

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

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

impl<'de> Deserialize<'de> for Interface

source§

fn deserialize<D>( deserializer: D, ) -> Result<Interface, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl Display for Interface

source§

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

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

impl From<Interface> for InterfaceSet

source§

fn from(value: Interface) -> InterfaceSet

Converts to this type from the input type.
source§

impl Not for Interface

source§

type Output = BitFlags<Interface>

The resulting type after applying the ! operator.
source§

fn not(self) -> <Interface as Not>::Output

Performs the unary ! operation. Read more
source§

impl PartialEq for Interface

source§

fn eq(&self, other: &Interface) -> 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.
source§

impl Serialize for Interface

source§

fn serialize<S>( &self, serializer: S, ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl TryFrom<&str> for Interface

source§

type Error = &'static str

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

fn try_from(s: &str) -> Result<Interface, <Interface as TryFrom<&str>>::Error>

Performs the conversion.
source§

impl Copy for Interface

source§

impl Eq for Interface

source§

impl StructuralPartialEq for Interface

Auto Trait Implementations§

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
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, dst: *mut T)

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

impl<T> From<T> for T

source§

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

source§

impl<T> Same for T

source§

type Output = T

Should always be Self
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> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. 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.
source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V

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

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,