atspi-proxies 0.13.0

AT-SPI2 proxies to query or manipulate UI objects
Documentation
//! # `DBus` interface proxies for: `org.a11y.Status`, `org.a11y.Bus`
//!
//! This code was generated by `zbus-xmlgen` `2.0.1` from `DBus` introspection data.
//! Source: `Interface '/org/a11y/bus' from service 'org.a11y.Bus' on session bus`.
//!
//! You may prefer to adapt it, instead of using it verbatim.
//!
//! More information can be found in the
//! [Writing a client proxy](https://dbus.pages.freedesktop.org/zbus/client.html)
//! section of the zbus documentation.
//!
//! This `DBus` object implements
//! [standard `DBus` interfaces](https://dbus.freedesktop.org/doc/dbus-specification.html),
//! (`org.freedesktop.DBus.*`) for which the following zbus proxies can be used:
//!
//! * [`zbus::fdo::PropertiesProxy`]
//! * [`zbus::fdo::IntrospectableProxy`]
//! * [`zbus::fdo::PeerProxy`]
//!
//! …consequently `zbus-xmlgen` did not generate code for the above interfaces.

#[zbus::proxy(
	interface = "org.a11y.Status",
	default_service = "org.a11y.Bus",
	default_path = "/org/a11y/bus"
)]
pub trait Status {
	/// `IsEnabled` property
	#[zbus(property)]
	fn is_enabled(&self) -> zbus::Result<bool>;
	#[zbus(property)]
	fn set_is_enabled(&self, value: bool) -> zbus::Result<()>;

	/// `ScreenReaderEnabled` property
	#[zbus(property)]
	fn screen_reader_enabled(&self) -> zbus::Result<bool>;
	#[zbus(property)]
	fn set_screen_reader_enabled(&self, value: bool) -> zbus::Result<()>;
}

#[zbus::proxy(
	interface = "org.a11y.Bus",
	default_service = "org.a11y.Bus",
	default_path = "/org/a11y/bus"
)]
pub trait Bus {
	/// `GetAddress` method
	fn get_address(&self) -> zbus::Result<String>;
}