1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
//! # `DBus` interface proxy for: `org.a11y.atspi.Hyperlink`
//!
//! This code was generated by `zbus-xmlgen` `2.0.1` from `DBus` introspection data.
//! Source: `Hyperlink.xml`.
//!
//! 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.
//!

use crate::common::ObjectRef;

#[zbus::proxy(interface = "org.a11y.atspi.Hyperlink", assume_defaults = true)]
trait Hyperlink {
	/// GetObject method
	fn get_object(&self, i: i32) -> zbus::Result<ObjectRef>;

	/// GetURI method
	fn get_uri(&self, i: i32) -> zbus::Result<String>;

	/// IsValid method
	fn is_valid(&self) -> zbus::Result<bool>;

	/// EndIndex property
	#[zbus(property)]
	fn end_index(&self) -> zbus::Result<i32>;

	/// NAnchors property
	#[zbus(property)]
	fn nanchors(&self) -> zbus::Result<i16>;

	/// StartIndex property
	#[zbus(property)]
	fn start_index(&self) -> zbus::Result<i32>;
}