pub trait DBusMatchRule {
const MATCH_RULE_STRING: &'static str;
}Expand description
A static DBus match rule string.
This should usually be a string that looks like this:
"type='signal',interface='org.a11y.atspi.Event.Object',member='PropertyChange'";
Required Associated Constants§
Sourceconst MATCH_RULE_STRING: &'static str
const MATCH_RULE_STRING: &'static str
A static match rule string for DBus.
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.