xa11y-linux 0.6.2

Linux accessibility backend for xa11y (AT-SPI2)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Linux accessibility backend using AT-SPI2 over D-Bus.
//!
//! This backend implements the `Provider` trait using the AT-SPI2 accessibility API.
//! Requires `at-spi2-core` package and toolkit accessibility to be enabled.

#[cfg(target_os = "linux")]
mod atspi;

#[cfg(target_os = "linux")]
pub use atspi::LinuxProvider;

#[cfg(not(target_os = "linux"))]
mod stub;

#[cfg(not(target_os = "linux"))]
pub use stub::LinuxProvider;