accesskit_atspi_common/
lib.rsmod action;
mod adapter;
mod callback;
mod context;
mod error;
mod events;
mod filters;
mod node;
mod rect;
#[cfg(feature = "simplified-api")]
pub mod simplified;
mod util;
pub use atspi_common::{
CoordType, Granularity, InterfaceSet, Layer, Role, ScrollType, State, StateSet,
};
pub use action::*;
pub use adapter::{next_adapter_id, Adapter};
pub use callback::AdapterCallback;
pub use context::{ActionHandlerNoMut, ActionHandlerWrapper, AppContext};
pub use error::*;
pub use events::*;
pub use node::{NodeIdOrRoot, PlatformNode, PlatformRoot};
pub use rect::*;
pub use util::WindowBounds;