1 | //! All proxy structures for communicating using AT-SPI. |
2 | //! Each proxy uses a different interface for communication. |
3 | |
4 | #![deny (clippy::all, clippy::pedantic, clippy::cargo, unsafe_code, rustdoc::all)] |
5 | #![allow (clippy::multiple_crate_versions)] |
6 | |
7 | #[cfg (all(not(feature = "async-std" ), not(feature = "tokio" )))] |
8 | compile_error!("You must specify at least one of the `async-std` or `tokio` features." ); |
9 | |
10 | pub use atspi_common as common; |
11 | |
12 | pub mod accessible; |
13 | pub mod action; |
14 | pub mod application; |
15 | pub mod bus; |
16 | pub mod cache; |
17 | pub mod collection; |
18 | pub mod component; |
19 | pub mod device_event_controller; |
20 | pub mod device_event_listener; |
21 | pub mod document; |
22 | pub mod editable_text; |
23 | pub use common::{events, AtspiError, CoordType, Interface, InterfaceSet}; |
24 | |
25 | pub mod hyperlink; |
26 | pub mod hypertext; |
27 | pub mod image; |
28 | pub mod registry; |
29 | pub mod selection; |
30 | pub mod socket; |
31 | pub mod table; |
32 | pub mod table_cell; |
33 | pub mod text; |
34 | pub mod value; |
35 | |