pub trait DBusInterface {
const DBUS_INTERFACE: &'static str;
}Expand description
The DBus interface name for an event - or a wrapper type.
For example, for any event within the “Object” interface, this should be “org.a11y.atspi.Event.Object”.
Required Associated Constants§
Sourceconst DBUS_INTERFACE: &'static str
const DBUS_INTERFACE: &'static str
A static interface string for DBus.
This should usually be a string that looks like this: "org.a11y.atspi.Event.*";
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.