pub enum FocusEvents {
Focus(FocusEvent),
}Variants§
Focus(FocusEvent)
See: FocusEvent.
Trait Implementations§
Source§impl Clone for FocusEvents
impl Clone for FocusEvents
Source§fn clone(&self) -> FocusEvents
fn clone(&self) -> FocusEvents
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl DBusInterface for FocusEvents
impl DBusInterface for FocusEvents
Source§const DBUS_INTERFACE: &'static str = "org.a11y.atspi.Event.Focus"
const DBUS_INTERFACE: &'static str = "org.a11y.atspi.Event.Focus"
A static interface string for
DBus.
This should usually be a string that looks like this: "org.a11y.atspi.Event.*";Source§impl DBusMatchRule for FocusEvents
impl DBusMatchRule for FocusEvents
Source§const MATCH_RULE_STRING: &'static str = "type='signal',interface='org.a11y.atspi.Event.Focus'"
const MATCH_RULE_STRING: &'static str = "type='signal',interface='org.a11y.atspi.Event.Focus'"
A static match rule string for
DBus.Source§impl Debug for FocusEvents
impl Debug for FocusEvents
Source§impl<'de> Deserialize<'de> for FocusEvents
impl<'de> Deserialize<'de> for FocusEvents
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl EventProperties for FocusEvents
impl EventProperties for FocusEvents
fn path(&self) -> ObjectPath<'_>
fn sender(&self) -> UniqueName<'_>
fn object_ref(&self) -> ObjectRef<'_>
Source§impl EventTypeProperties for FocusEvents
impl EventTypeProperties for FocusEvents
Source§impl EventWrapperMessageConversion for FocusEvents
Available on crate feature zbus only.
impl EventWrapperMessageConversion for FocusEvents
Available on crate feature
zbus only.Source§fn try_from_message_interface_checked(
msg: &Message,
hdr: &Header<'_>,
) -> Result<Self, AtspiError>
fn try_from_message_interface_checked( msg: &Message, hdr: &Header<'_>, ) -> Result<Self, AtspiError>
Errors Read more
Source§impl From<FocusEvent> for FocusEvents
impl From<FocusEvent> for FocusEvents
Source§fn from(specific_event: FocusEvent) -> FocusEvents
fn from(specific_event: FocusEvent) -> FocusEvents
Converts to this type from the input type.
Source§impl From<FocusEvents> for Event
Available on crate feature wrappers only.
impl From<FocusEvents> for Event
Available on crate feature
wrappers only.Source§fn from(event_variant: FocusEvents) -> Event
fn from(event_variant: FocusEvents) -> Event
Converts to this type from the input type.
Source§impl Hash for FocusEvents
impl Hash for FocusEvents
Source§impl PartialEq for FocusEvents
impl PartialEq for FocusEvents
Source§impl RegistryEventString for FocusEvents
impl RegistryEventString for FocusEvents
Source§const REGISTRY_EVENT_STRING: &'static str = "focus:"
const REGISTRY_EVENT_STRING: &'static str = "focus:"
A registry event string for registering for event receiving via the
RegistryProxy.
This should be deprecated in favour of composing the string from DBusMember::DBUS_MEMBER and DBusInterface::DBUS_INTERFACE.Source§impl Serialize for FocusEvents
impl Serialize for FocusEvents
Source§impl TryFrom<&Message> for FocusEvents
Available on crate feature zbus only.
impl TryFrom<&Message> for FocusEvents
Available on crate feature
zbus only.Source§impl TryFrom<Event> for FocusEvents
impl TryFrom<Event> for FocusEvents
Source§impl TryFromMessage for FocusEvents
Available on crate feature zbus only.
impl TryFromMessage for FocusEvents
Available on crate feature
zbus only.fn try_from_message(msg: &Message) -> Result<FocusEvents, AtspiError>
impl Eq for FocusEvents
impl StructuralPartialEq for FocusEvents
Auto Trait Implementations§
impl Freeze for FocusEvents
impl RefUnwindSafe for FocusEvents
impl Send for FocusEvents
impl Sync for FocusEvents
impl Unpin for FocusEvents
impl UnwindSafe for FocusEvents
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more