Trait BusProperties

Source
pub trait BusProperties {
    const DBUS_MEMBER: &'static str;
    const DBUS_INTERFACE: &'static str;
    const MATCH_RULE_STRING: &'static str;
    const REGISTRY_EVENT_STRING: &'static str;
}
Expand description

Describes the DBus-related information about a given struct.

  • DBus member name
  • DBus interface name
  • DBus match string: used to tell DBus you are interested in a particular signal
  • accessibility registry event string: used to tell the accessibility registry that you are interested in a particular event

This trait is not object-safe. For a similar, but object-safe trait, see EventProperties.

Required Associated Constants§

Source

const DBUS_MEMBER: &'static str

The DBus member for the event. For example, for an crate::events::object::TextChangedEvent this should be "TextChanged"

Source

const DBUS_INTERFACE: &'static str

The DBus interface name for this event. For example, for any event within crate::events::object, this should be “org.a11y.atspi.Event.Object”.

Source

const MATCH_RULE_STRING: &'static str

A static match rule string for DBus. This should usually be a string that looks like this: "type='signal',interface='org.a11y.atspi.Event.Object',member='PropertyChange'"; This should be deprecated in favour of composing the string from Self::DBUS_MEMBER and Self::DBUS_INTERFACE.

Source

const REGISTRY_EVENT_STRING: &'static str

A registry event string for registering for event receiving via the RegistryProxy. This should be deprecated in favour of composing the string from Self::DBUS_MEMBER and Self::DBUS_INTERFACE.

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.

Implementors§

Source§

impl BusProperties for AddAccessibleEvent

Source§

const REGISTRY_EVENT_STRING: &'static str = "Cache:Add"

Source§

const MATCH_RULE_STRING: &'static str = "type='signal',interface='org.a11y.atspi.Cache',member='AddAccessible'"

Source§

const DBUS_MEMBER: &'static str = "AddAccessible"

Source§

const DBUS_INTERFACE: &'static str = "org.a11y.atspi.Cache"

Source§

impl BusProperties for LegacyAddAccessibleEvent

Source§

const REGISTRY_EVENT_STRING: &'static str = "Cache:Add"

Source§

const MATCH_RULE_STRING: &'static str = "type='signal',interface='org.a11y.atspi.Cache',member='AddAccessible'"

Source§

const DBUS_MEMBER: &'static str = "AddAccessible"

Source§

const DBUS_INTERFACE: &'static str = "org.a11y.atspi.Cache"

Source§

impl BusProperties for RemoveAccessibleEvent

Source§

const REGISTRY_EVENT_STRING: &'static str = "Cache:Remove"

Source§

const MATCH_RULE_STRING: &'static str = "type='signal',interface='org.a11y.atspi.Cache',member='RemoveAccessible'"

Source§

const DBUS_MEMBER: &'static str = "RemoveAccessible"

Source§

const DBUS_INTERFACE: &'static str = "org.a11y.atspi.Cache"

Source§

impl BusProperties for atspi_common::events::document::AttributesChangedEvent

Source§

const DBUS_MEMBER: &'static str = "AttributesChanged"

Source§

const DBUS_INTERFACE: &'static str = "org.a11y.atspi.Event.Document"

Source§

const MATCH_RULE_STRING: &'static str = "type='signal',interface='org.a11y.atspi.Event.Document',member='AttributesChanged'"

Source§

const REGISTRY_EVENT_STRING: &'static str = "Document:"

Source§

impl BusProperties for ContentChangedEvent

Source§

const DBUS_MEMBER: &'static str = "ContentChanged"

Source§

const DBUS_INTERFACE: &'static str = "org.a11y.atspi.Event.Document"

Source§

const MATCH_RULE_STRING: &'static str = "type='signal',interface='org.a11y.atspi.Event.Document',member='ContentChanged'"

Source§

const REGISTRY_EVENT_STRING: &'static str = "Document:"

Source§

impl BusProperties for LoadCompleteEvent

Source§

const DBUS_MEMBER: &'static str = "LoadComplete"

Source§

const DBUS_INTERFACE: &'static str = "org.a11y.atspi.Event.Document"

Source§

const MATCH_RULE_STRING: &'static str = "type='signal',interface='org.a11y.atspi.Event.Document',member='LoadComplete'"

Source§

const REGISTRY_EVENT_STRING: &'static str = "Document:"

Source§

impl BusProperties for LoadStoppedEvent

Source§

const DBUS_MEMBER: &'static str = "LoadStopped"

Source§

const DBUS_INTERFACE: &'static str = "org.a11y.atspi.Event.Document"

Source§

const MATCH_RULE_STRING: &'static str = "type='signal',interface='org.a11y.atspi.Event.Document',member='LoadStopped'"

Source§

const REGISTRY_EVENT_STRING: &'static str = "Document:"

Source§

impl BusProperties for PageChangedEvent

Source§

const DBUS_MEMBER: &'static str = "PageChanged"

Source§

const DBUS_INTERFACE: &'static str = "org.a11y.atspi.Event.Document"

Source§

const MATCH_RULE_STRING: &'static str = "type='signal',interface='org.a11y.atspi.Event.Document',member='PageChanged'"

Source§

const REGISTRY_EVENT_STRING: &'static str = "Document:"

Source§

impl BusProperties for ReloadEvent

Source§

const DBUS_MEMBER: &'static str = "Reload"

Source§

const DBUS_INTERFACE: &'static str = "org.a11y.atspi.Event.Document"

Source§

const MATCH_RULE_STRING: &'static str = "type='signal',interface='org.a11y.atspi.Event.Document',member='Reload'"

Source§

const REGISTRY_EVENT_STRING: &'static str = "Document:"

Source§

impl BusProperties for FocusEvent

Source§

const DBUS_MEMBER: &'static str = "Focus"

Source§

const DBUS_INTERFACE: &'static str = "org.a11y.atspi.Event.Focus"

Source§

const MATCH_RULE_STRING: &'static str = "type='signal',interface='org.a11y.atspi.Event.Focus',member='Focus'"

Source§

const REGISTRY_EVENT_STRING: &'static str = "Focus:"

Source§

impl BusProperties for ModifiersEvent

Source§

const DBUS_MEMBER: &'static str = "Modifiers"

Source§

const DBUS_INTERFACE: &'static str = "org.a11y.atspi.Event.Keyboard"

Source§

const MATCH_RULE_STRING: &'static str = "type='signal',interface='org.a11y.atspi.Event.Keyboard',member='Modifiers'"

Source§

const REGISTRY_EVENT_STRING: &'static str = "Keyboard:"

Source§

impl BusProperties for AbsEvent

Source§

const DBUS_MEMBER: &'static str = "Abs"

Source§

const DBUS_INTERFACE: &'static str = "org.a11y.atspi.Event.Mouse"

Source§

const MATCH_RULE_STRING: &'static str = "type='signal',interface='org.a11y.atspi.Event.Mouse',member='Abs'"

Source§

const REGISTRY_EVENT_STRING: &'static str = "Mouse:"

Source§

impl BusProperties for ButtonEvent

Source§

const DBUS_MEMBER: &'static str = "Button"

Source§

const DBUS_INTERFACE: &'static str = "org.a11y.atspi.Event.Mouse"

Source§

const MATCH_RULE_STRING: &'static str = "type='signal',interface='org.a11y.atspi.Event.Mouse',member='Button'"

Source§

const REGISTRY_EVENT_STRING: &'static str = "Mouse:"

Source§

impl BusProperties for RelEvent

Source§

const DBUS_MEMBER: &'static str = "Rel"

Source§

const DBUS_INTERFACE: &'static str = "org.a11y.atspi.Event.Mouse"

Source§

const MATCH_RULE_STRING: &'static str = "type='signal',interface='org.a11y.atspi.Event.Mouse',member='Rel'"

Source§

const REGISTRY_EVENT_STRING: &'static str = "Mouse:"

Source§

impl BusProperties for ActiveDescendantChangedEvent

Source§

const DBUS_MEMBER: &'static str = "ActiveDescendantChanged"

Source§

const DBUS_INTERFACE: &'static str = "org.a11y.atspi.Event.Object"

Source§

const MATCH_RULE_STRING: &'static str = "type='signal',interface='org.a11y.atspi.Event.Object',member='ActiveDescendantChanged'"

Source§

const REGISTRY_EVENT_STRING: &'static str = "Object:"

Source§

impl BusProperties for AnnouncementEvent

Source§

const DBUS_MEMBER: &'static str = "Announcement"

Source§

const DBUS_INTERFACE: &'static str = "org.a11y.atspi.Event.Object"

Source§

const MATCH_RULE_STRING: &'static str = "type='signal',interface='org.a11y.atspi.Event.Object',member='Announcement'"

Source§

const REGISTRY_EVENT_STRING: &'static str = "Object:"

Source§

impl BusProperties for atspi_common::events::object::AttributesChangedEvent

Source§

const DBUS_MEMBER: &'static str = "AttributesChanged"

Source§

const DBUS_INTERFACE: &'static str = "org.a11y.atspi.Event.Object"

Source§

const MATCH_RULE_STRING: &'static str = "type='signal',interface='org.a11y.atspi.Event.Object',member='AttributesChanged'"

Source§

const REGISTRY_EVENT_STRING: &'static str = "Object:"

Source§

impl BusProperties for BoundsChangedEvent

Source§

const DBUS_MEMBER: &'static str = "BoundsChanged"

Source§

const DBUS_INTERFACE: &'static str = "org.a11y.atspi.Event.Object"

Source§

const MATCH_RULE_STRING: &'static str = "type='signal',interface='org.a11y.atspi.Event.Object',member='BoundsChanged'"

Source§

const REGISTRY_EVENT_STRING: &'static str = "Object:"

Source§

impl BusProperties for ChildrenChangedEvent

Source§

const DBUS_MEMBER: &'static str = "ChildrenChanged"

Source§

const DBUS_INTERFACE: &'static str = "org.a11y.atspi.Event.Object"

Source§

const MATCH_RULE_STRING: &'static str = "type='signal',interface='org.a11y.atspi.Event.Object',member='ChildrenChanged'"

Source§

const REGISTRY_EVENT_STRING: &'static str = "Object:"

Source§

impl BusProperties for ColumnDeletedEvent

Source§

const DBUS_MEMBER: &'static str = "ColumnDeleted"

Source§

const DBUS_INTERFACE: &'static str = "org.a11y.atspi.Event.Object"

Source§

const MATCH_RULE_STRING: &'static str = "type='signal',interface='org.a11y.atspi.Event.Object',member='ColumnDeleted'"

Source§

const REGISTRY_EVENT_STRING: &'static str = "Object:"

Source§

impl BusProperties for ColumnInsertedEvent

Source§

const DBUS_MEMBER: &'static str = "ColumnInserted"

Source§

const DBUS_INTERFACE: &'static str = "org.a11y.atspi.Event.Object"

Source§

const MATCH_RULE_STRING: &'static str = "type='signal',interface='org.a11y.atspi.Event.Object',member='ColumnInserted'"

Source§

const REGISTRY_EVENT_STRING: &'static str = "Object:"

Source§

impl BusProperties for ColumnReorderedEvent

Source§

const DBUS_MEMBER: &'static str = "ColumnReordered"

Source§

const DBUS_INTERFACE: &'static str = "org.a11y.atspi.Event.Object"

Source§

const MATCH_RULE_STRING: &'static str = "type='signal',interface='org.a11y.atspi.Event.Object',member='ColumnReordered'"

Source§

const REGISTRY_EVENT_STRING: &'static str = "Object:"

Source§

impl BusProperties for LinkSelectedEvent

Source§

const DBUS_MEMBER: &'static str = "LinkSelected"

Source§

const DBUS_INTERFACE: &'static str = "org.a11y.atspi.Event.Object"

Source§

const MATCH_RULE_STRING: &'static str = "type='signal',interface='org.a11y.atspi.Event.Object',member='LinkSelected'"

Source§

const REGISTRY_EVENT_STRING: &'static str = "Object:"

Source§

impl BusProperties for ModelChangedEvent

Source§

const DBUS_MEMBER: &'static str = "ModelChanged"

Source§

const DBUS_INTERFACE: &'static str = "org.a11y.atspi.Event.Object"

Source§

const MATCH_RULE_STRING: &'static str = "type='signal',interface='org.a11y.atspi.Event.Object',member='ModelChanged'"

Source§

const REGISTRY_EVENT_STRING: &'static str = "Object:"

Source§

impl BusProperties for atspi_common::events::object::PropertyChangeEvent

Source§

const DBUS_MEMBER: &'static str = "PropertyChange"

Source§

const DBUS_INTERFACE: &'static str = "org.a11y.atspi.Event.Object"

Source§

const MATCH_RULE_STRING: &'static str = "type='signal',interface='org.a11y.atspi.Event.Object',member='PropertyChange'"

Source§

const REGISTRY_EVENT_STRING: &'static str = "Object:"

Source§

impl BusProperties for RowDeletedEvent

Source§

const DBUS_MEMBER: &'static str = "RowDeleted"

Source§

const DBUS_INTERFACE: &'static str = "org.a11y.atspi.Event.Object"

Source§

const MATCH_RULE_STRING: &'static str = "type='signal',interface='org.a11y.atspi.Event.Object',member='RowDeleted'"

Source§

const REGISTRY_EVENT_STRING: &'static str = "Object:"

Source§

impl BusProperties for RowInsertedEvent

Source§

const DBUS_MEMBER: &'static str = "RowInserted"

Source§

const DBUS_INTERFACE: &'static str = "org.a11y.atspi.Event.Object"

Source§

const MATCH_RULE_STRING: &'static str = "type='signal',interface='org.a11y.atspi.Event.Object',member='RowInserted'"

Source§

const REGISTRY_EVENT_STRING: &'static str = "Object:"

Source§

impl BusProperties for RowReorderedEvent

Source§

const DBUS_MEMBER: &'static str = "RowReordered"

Source§

const DBUS_INTERFACE: &'static str = "org.a11y.atspi.Event.Object"

Source§

const MATCH_RULE_STRING: &'static str = "type='signal',interface='org.a11y.atspi.Event.Object',member='RowReordered'"

Source§

const REGISTRY_EVENT_STRING: &'static str = "Object:"

Source§

impl BusProperties for SelectionChangedEvent

Source§

const DBUS_MEMBER: &'static str = "SelectionChanged"

Source§

const DBUS_INTERFACE: &'static str = "org.a11y.atspi.Event.Object"

Source§

const MATCH_RULE_STRING: &'static str = "type='signal',interface='org.a11y.atspi.Event.Object',member='SelectionChanged'"

Source§

const REGISTRY_EVENT_STRING: &'static str = "Object:"

Source§

impl BusProperties for StateChangedEvent

Source§

const DBUS_MEMBER: &'static str = "StateChanged"

Source§

const DBUS_INTERFACE: &'static str = "org.a11y.atspi.Event.Object"

Source§

const MATCH_RULE_STRING: &'static str = "type='signal',interface='org.a11y.atspi.Event.Object',member='StateChanged'"

Source§

const REGISTRY_EVENT_STRING: &'static str = "Object:"

Source§

impl BusProperties for TextAttributesChangedEvent

Source§

const DBUS_MEMBER: &'static str = "TextAttributesChanged"

Source§

const DBUS_INTERFACE: &'static str = "org.a11y.atspi.Event.Object"

Source§

const MATCH_RULE_STRING: &'static str = "type='signal',interface='org.a11y.atspi.Event.Object',member='TextAttributesChanged'"

Source§

const REGISTRY_EVENT_STRING: &'static str = "Object:"

Source§

impl BusProperties for TextBoundsChangedEvent

Source§

const DBUS_MEMBER: &'static str = "TextBoundsChanged"

Source§

const DBUS_INTERFACE: &'static str = "org.a11y.atspi.Event.Object"

Source§

const MATCH_RULE_STRING: &'static str = "type='signal',interface='org.a11y.atspi.Event.Object',member='TextBoundsChanged'"

Source§

const REGISTRY_EVENT_STRING: &'static str = "Object:"

Source§

impl BusProperties for TextCaretMovedEvent

Source§

const DBUS_MEMBER: &'static str = "TextCaretMoved"

Source§

const DBUS_INTERFACE: &'static str = "org.a11y.atspi.Event.Object"

Source§

const MATCH_RULE_STRING: &'static str = "type='signal',interface='org.a11y.atspi.Event.Object',member='TextCaretMoved'"

Source§

const REGISTRY_EVENT_STRING: &'static str = "Object:"

Source§

impl BusProperties for TextChangedEvent

Source§

const DBUS_MEMBER: &'static str = "TextChanged"

Source§

const DBUS_INTERFACE: &'static str = "org.a11y.atspi.Event.Object"

Source§

const MATCH_RULE_STRING: &'static str = "type='signal',interface='org.a11y.atspi.Event.Object',member='TextChanged'"

Source§

const REGISTRY_EVENT_STRING: &'static str = "Object:"

Source§

impl BusProperties for TextSelectionChangedEvent

Source§

const DBUS_MEMBER: &'static str = "TextSelectionChanged"

Source§

const DBUS_INTERFACE: &'static str = "org.a11y.atspi.Event.Object"

Source§

const MATCH_RULE_STRING: &'static str = "type='signal',interface='org.a11y.atspi.Event.Object',member='TextSelectionChanged'"

Source§

const REGISTRY_EVENT_STRING: &'static str = "Object:"

Source§

impl BusProperties for VisibleDataChangedEvent

Source§

const DBUS_MEMBER: &'static str = "VisibleDataChanged"

Source§

const DBUS_INTERFACE: &'static str = "org.a11y.atspi.Event.Object"

Source§

const MATCH_RULE_STRING: &'static str = "type='signal',interface='org.a11y.atspi.Event.Object',member='VisibleDataChanged'"

Source§

const REGISTRY_EVENT_STRING: &'static str = "Object:"

Source§

impl BusProperties for AvailableEvent

Source§

const REGISTRY_EVENT_STRING: &'static str = "Socket:Available"

Source§

const MATCH_RULE_STRING: &'static str = "type='signal',interface='org.a11y.atspi.Socket',member='Available'"

Source§

const DBUS_MEMBER: &'static str = "Available"

Source§

const DBUS_INTERFACE: &'static str = "org.a11y.atspi.Socket"

Source§

impl BusProperties for EventListenerDeregisteredEvent

Source§

const REGISTRY_EVENT_STRING: &'static str = "Registry:EventListenerDeregistered"

Source§

const MATCH_RULE_STRING: &'static str = "type='signal',interface='org.a11y.atspi.Registry',member='EventListenerDeregistered'"

Source§

const DBUS_MEMBER: &'static str = "EventListenerDeregistered"

Source§

const DBUS_INTERFACE: &'static str = "org.a11y.atspi.Registry"

Source§

impl BusProperties for EventListenerRegisteredEvent

Source§

const REGISTRY_EVENT_STRING: &'static str = "Registry:EventListenerRegistered"

Source§

const MATCH_RULE_STRING: &'static str = "type='signal',interface='org.a11y.atspi.Registry',member='EventListenerRegistered'"

Source§

const DBUS_MEMBER: &'static str = "EventListenerRegistered"

Source§

const DBUS_INTERFACE: &'static str = "org.a11y.atspi.Registry"

Source§

impl BusProperties for ApplicationChangedEvent

Source§

const DBUS_MEMBER: &'static str = "ApplicationChanged"

Source§

const DBUS_INTERFACE: &'static str = "org.a11y.atspi.Event.Terminal"

Source§

const MATCH_RULE_STRING: &'static str = "type='signal',interface='org.a11y.atspi.Event.Terminal',member='ApplicationChanged'"

Source§

const REGISTRY_EVENT_STRING: &'static str = "Terminal:"

Source§

impl BusProperties for CharWidthChangedEvent

Source§

const DBUS_MEMBER: &'static str = "CharwidthChanged"

Source§

const DBUS_INTERFACE: &'static str = "org.a11y.atspi.Event.Terminal"

Source§

const MATCH_RULE_STRING: &'static str = "type='signal',interface='org.a11y.atspi.Event.Terminal',member='CharwidthChanged'"

Source§

const REGISTRY_EVENT_STRING: &'static str = "Terminal:"

Source§

impl BusProperties for ColumnCountChangedEvent

Source§

const DBUS_MEMBER: &'static str = "ColumncountChanged"

Source§

const DBUS_INTERFACE: &'static str = "org.a11y.atspi.Event.Terminal"

Source§

const MATCH_RULE_STRING: &'static str = "type='signal',interface='org.a11y.atspi.Event.Terminal',member='ColumncountChanged'"

Source§

const REGISTRY_EVENT_STRING: &'static str = "Terminal:"

Source§

impl BusProperties for LineChangedEvent

Source§

const DBUS_MEMBER: &'static str = "LineChanged"

Source§

const DBUS_INTERFACE: &'static str = "org.a11y.atspi.Event.Terminal"

Source§

const MATCH_RULE_STRING: &'static str = "type='signal',interface='org.a11y.atspi.Event.Terminal',member='LineChanged'"

Source§

const REGISTRY_EVENT_STRING: &'static str = "Terminal:"

Source§

impl BusProperties for LineCountChangedEvent

Source§

const DBUS_MEMBER: &'static str = "LinecountChanged"

Source§

const DBUS_INTERFACE: &'static str = "org.a11y.atspi.Event.Terminal"

Source§

const MATCH_RULE_STRING: &'static str = "type='signal',interface='org.a11y.atspi.Event.Terminal',member='LinecountChanged'"

Source§

const REGISTRY_EVENT_STRING: &'static str = "Terminal:"

Source§

impl BusProperties for ActivateEvent

Source§

const DBUS_MEMBER: &'static str = "Activate"

Source§

const DBUS_INTERFACE: &'static str = "org.a11y.atspi.Event.Window"

Source§

const MATCH_RULE_STRING: &'static str = "type='signal',interface='org.a11y.atspi.Event.Window',member='Activate'"

Source§

const REGISTRY_EVENT_STRING: &'static str = "Window:"

Source§

impl BusProperties for CloseEvent

Source§

const DBUS_MEMBER: &'static str = "Close"

Source§

const DBUS_INTERFACE: &'static str = "org.a11y.atspi.Event.Window"

Source§

const MATCH_RULE_STRING: &'static str = "type='signal',interface='org.a11y.atspi.Event.Window',member='Close'"

Source§

const REGISTRY_EVENT_STRING: &'static str = "Window:"

Source§

impl BusProperties for CreateEvent

Source§

const DBUS_MEMBER: &'static str = "Create"

Source§

const DBUS_INTERFACE: &'static str = "org.a11y.atspi.Event.Window"

Source§

const MATCH_RULE_STRING: &'static str = "type='signal',interface='org.a11y.atspi.Event.Window',member='Create'"

Source§

const REGISTRY_EVENT_STRING: &'static str = "Window:"

Source§

impl BusProperties for DeactivateEvent

Source§

const DBUS_MEMBER: &'static str = "Deactivate"

Source§

const DBUS_INTERFACE: &'static str = "org.a11y.atspi.Event.Window"

Source§

const MATCH_RULE_STRING: &'static str = "type='signal',interface='org.a11y.atspi.Event.Window',member='Deactivate'"

Source§

const REGISTRY_EVENT_STRING: &'static str = "Window:"

Source§

impl BusProperties for DesktopCreateEvent

Source§

const DBUS_MEMBER: &'static str = "DesktopCreate"

Source§

const DBUS_INTERFACE: &'static str = "org.a11y.atspi.Event.Window"

Source§

const MATCH_RULE_STRING: &'static str = "type='signal',interface='org.a11y.atspi.Event.Window',member='DesktopCreate'"

Source§

const REGISTRY_EVENT_STRING: &'static str = "Window:"

Source§

impl BusProperties for DesktopDestroyEvent

Source§

const DBUS_MEMBER: &'static str = "DesktopDestroy"

Source§

const DBUS_INTERFACE: &'static str = "org.a11y.atspi.Event.Window"

Source§

const MATCH_RULE_STRING: &'static str = "type='signal',interface='org.a11y.atspi.Event.Window',member='DesktopDestroy'"

Source§

const REGISTRY_EVENT_STRING: &'static str = "Window:"

Source§

impl BusProperties for DestroyEvent

Source§

const DBUS_MEMBER: &'static str = "Destroy"

Source§

const DBUS_INTERFACE: &'static str = "org.a11y.atspi.Event.Window"

Source§

const MATCH_RULE_STRING: &'static str = "type='signal',interface='org.a11y.atspi.Event.Window',member='Destroy'"

Source§

const REGISTRY_EVENT_STRING: &'static str = "Window:"

Source§

impl BusProperties for LowerEvent

Source§

const DBUS_MEMBER: &'static str = "Lower"

Source§

const DBUS_INTERFACE: &'static str = "org.a11y.atspi.Event.Window"

Source§

const MATCH_RULE_STRING: &'static str = "type='signal',interface='org.a11y.atspi.Event.Window',member='Lower'"

Source§

const REGISTRY_EVENT_STRING: &'static str = "Window:"

Source§

impl BusProperties for MaximizeEvent

Source§

const DBUS_MEMBER: &'static str = "Maximize"

Source§

const DBUS_INTERFACE: &'static str = "org.a11y.atspi.Event.Window"

Source§

const MATCH_RULE_STRING: &'static str = "type='signal',interface='org.a11y.atspi.Event.Window',member='Maximize'"

Source§

const REGISTRY_EVENT_STRING: &'static str = "Window:"

Source§

impl BusProperties for MinimizeEvent

Source§

const DBUS_MEMBER: &'static str = "Minimize"

Source§

const DBUS_INTERFACE: &'static str = "org.a11y.atspi.Event.Window"

Source§

const MATCH_RULE_STRING: &'static str = "type='signal',interface='org.a11y.atspi.Event.Window',member='Minimize'"

Source§

const REGISTRY_EVENT_STRING: &'static str = "Window:"

Source§

impl BusProperties for MoveEvent

Source§

const DBUS_MEMBER: &'static str = "Move"

Source§

const DBUS_INTERFACE: &'static str = "org.a11y.atspi.Event.Window"

Source§

const MATCH_RULE_STRING: &'static str = "type='signal',interface='org.a11y.atspi.Event.Window',member='Move'"

Source§

const REGISTRY_EVENT_STRING: &'static str = "Window:"

Source§

impl BusProperties for atspi_common::events::window::PropertyChangeEvent

Source§

const DBUS_MEMBER: &'static str = "PropertyChange"

Source§

const DBUS_INTERFACE: &'static str = "org.a11y.atspi.Event.Window"

Source§

const MATCH_RULE_STRING: &'static str = "type='signal',interface='org.a11y.atspi.Event.Window',member='PropertyChange'"

Source§

const REGISTRY_EVENT_STRING: &'static str = "Window:"

Source§

impl BusProperties for RaiseEvent

Source§

const DBUS_MEMBER: &'static str = "Raise"

Source§

const DBUS_INTERFACE: &'static str = "org.a11y.atspi.Event.Window"

Source§

const MATCH_RULE_STRING: &'static str = "type='signal',interface='org.a11y.atspi.Event.Window',member='Raise'"

Source§

const REGISTRY_EVENT_STRING: &'static str = "Window:"

Source§

impl BusProperties for ReparentEvent

Source§

const DBUS_MEMBER: &'static str = "Reparent"

Source§

const DBUS_INTERFACE: &'static str = "org.a11y.atspi.Event.Window"

Source§

const MATCH_RULE_STRING: &'static str = "type='signal',interface='org.a11y.atspi.Event.Window',member='Reparent'"

Source§

const REGISTRY_EVENT_STRING: &'static str = "Window:"

Source§

impl BusProperties for ResizeEvent

Source§

const DBUS_MEMBER: &'static str = "Resize"

Source§

const DBUS_INTERFACE: &'static str = "org.a11y.atspi.Event.Window"

Source§

const MATCH_RULE_STRING: &'static str = "type='signal',interface='org.a11y.atspi.Event.Window',member='Resize'"

Source§

const REGISTRY_EVENT_STRING: &'static str = "Window:"

Source§

impl BusProperties for RestoreEvent

Source§

const DBUS_MEMBER: &'static str = "Restore"

Source§

const DBUS_INTERFACE: &'static str = "org.a11y.atspi.Event.Window"

Source§

const MATCH_RULE_STRING: &'static str = "type='signal',interface='org.a11y.atspi.Event.Window',member='Restore'"

Source§

const REGISTRY_EVENT_STRING: &'static str = "Window:"

Source§

impl BusProperties for RestyleEvent

Source§

const DBUS_MEMBER: &'static str = "Restyle"

Source§

const DBUS_INTERFACE: &'static str = "org.a11y.atspi.Event.Window"

Source§

const MATCH_RULE_STRING: &'static str = "type='signal',interface='org.a11y.atspi.Event.Window',member='Restyle'"

Source§

const REGISTRY_EVENT_STRING: &'static str = "Window:"

Source§

impl BusProperties for ShadeEvent

Source§

const DBUS_MEMBER: &'static str = "Shade"

Source§

const DBUS_INTERFACE: &'static str = "org.a11y.atspi.Event.Window"

Source§

const MATCH_RULE_STRING: &'static str = "type='signal',interface='org.a11y.atspi.Event.Window',member='Shade'"

Source§

const REGISTRY_EVENT_STRING: &'static str = "Window:"

Source§

impl BusProperties for UUshadeEvent

Source§

const DBUS_MEMBER: &'static str = "uUshade"

Source§

const DBUS_INTERFACE: &'static str = "org.a11y.atspi.Event.Window"

Source§

const MATCH_RULE_STRING: &'static str = "type='signal',interface='org.a11y.atspi.Event.Window',member='uUshade'"

Source§

const REGISTRY_EVENT_STRING: &'static str = "Window:"