pub struct AvailableEvent {
pub item: ObjectRef,
pub socket: ObjectRef,
}
Expand description
An event that is emitted when the registry daemon has started.
Fields§
§item: ObjectRef
The ObjectRef
the event applies to.
socket: ObjectRef
Trait Implementations§
Source§impl BusProperties for AvailableEvent
impl BusProperties for AvailableEvent
Source§const REGISTRY_EVENT_STRING: &'static str = "Socket:Available"
const REGISTRY_EVENT_STRING: &'static str = "Socket:Available"
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
.Source§const MATCH_RULE_STRING: &'static str = "type='signal',interface='org.a11y.atspi.Socket',member='Available'"
const MATCH_RULE_STRING: &'static str = "type='signal',interface='org.a11y.atspi.Socket',member='Available'"
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 DBUS_MEMBER: &'static str = "Available"
const DBUS_MEMBER: &'static str = "Available"
The
DBus
member for the event.
For example, for an crate::events::object::TextChangedEvent
this should be "TextChanged"
Source§const DBUS_INTERFACE: &'static str = "org.a11y.atspi.Socket"
const DBUS_INTERFACE: &'static str = "org.a11y.atspi.Socket"
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§impl Clone for AvailableEvent
impl Clone for AvailableEvent
Source§fn clone(&self) -> AvailableEvent
fn clone(&self) -> AvailableEvent
Returns a copy 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 Debug for AvailableEvent
impl Debug for AvailableEvent
Source§impl Default for AvailableEvent
impl Default for AvailableEvent
Source§fn default() -> AvailableEvent
fn default() -> AvailableEvent
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AvailableEvent
impl<'de> Deserialize<'de> for AvailableEvent
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 AvailableEvent
impl EventProperties for AvailableEvent
fn sender(&self) -> UniqueName<'_>
fn path(&self) -> ObjectPath<'_>
fn object_ref(&self) -> ObjectRef
Source§impl From<AvailableEvent> for Event
impl From<AvailableEvent> for Event
Source§fn from(ev: AvailableEvent) -> Event
fn from(ev: AvailableEvent) -> Event
Converts to this type from the input type.
Source§impl Hash for AvailableEvent
impl Hash for AvailableEvent
Source§impl MessageConversion for AvailableEvent
impl MessageConversion for AvailableEvent
Source§fn from_message_unchecked_parts(
item: ObjectRef,
socket: Self::Body,
) -> Result<Self, AtspiError>
fn from_message_unchecked_parts( item: ObjectRef, socket: Self::Body, ) -> Result<Self, AtspiError>
Build an event from an
ObjectRef
and Self::Body
.
This function will not check for any of the following error conditions: Read moreSource§fn from_message_unchecked(msg: &Message) -> Result<Self, AtspiError>
fn from_message_unchecked(msg: &Message) -> Result<Self, AtspiError>
Build an event from a
zbus::Message
reference.
This function will not check for any of the following error conditions: Read moreSource§impl PartialEq for AvailableEvent
impl PartialEq for AvailableEvent
Source§impl Serialize for AvailableEvent
impl Serialize for AvailableEvent
Source§impl TryFrom<&Message> for AvailableEvent
impl TryFrom<&Message> for AvailableEvent
Source§impl TryFrom<AvailableEvent> for Message
impl TryFrom<AvailableEvent> for Message
Source§type Error = AtspiError
type Error = AtspiError
The type returned in the event of a conversion error.
Source§impl TryFrom<Event> for AvailableEvent
impl TryFrom<Event> for AvailableEvent
impl Eq for AvailableEvent
impl StructuralPartialEq for AvailableEvent
Auto Trait Implementations§
impl Freeze for AvailableEvent
impl RefUnwindSafe for AvailableEvent
impl Send for AvailableEvent
impl Sync for AvailableEvent
impl Unpin for AvailableEvent
impl UnwindSafe for AvailableEvent
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> EventTypeProperties for Twhere
T: BusProperties,
impl<T> EventTypeProperties for Twhere
T: BusProperties,
Source§impl<T> HasInterfaceName for Twhere
T: BusProperties,
impl<T> HasInterfaceName for Twhere
T: BusProperties,
Source§const DBUS_INTERFACE: &'static str = const DBUS_INTERFACE: &'static str = <T as BusProperties>::DBUS_INTERFACE;
const DBUS_INTERFACE: &'static str = const DBUS_INTERFACE: &'static str = <T as BusProperties>::DBUS_INTERFACE;
A static interface string for
DBus
.
This should usually be a string that looks like this: "org.a11y.atspi.Event.*"
;Source§impl<T> HasMatchRule for Twhere
T: BusProperties,
impl<T> HasMatchRule for Twhere
T: BusProperties,
Source§const MATCH_RULE_STRING: &'static str = const MATCH_RULE_STRING: &'static str =
<T as BusProperties>::MATCH_RULE_STRING;
const MATCH_RULE_STRING: &'static str = const MATCH_RULE_STRING: &'static str = <T as BusProperties>::MATCH_RULE_STRING;
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 BusProperties::DBUS_MEMBER
and BusProperties::DBUS_INTERFACE
.Source§impl<T> HasRegistryEventString for Twhere
T: BusProperties,
impl<T> HasRegistryEventString for Twhere
T: BusProperties,
Source§const REGISTRY_EVENT_STRING: &'static str = const REGISTRY_EVENT_STRING: &'static str =
<T as BusProperties>::REGISTRY_EVENT_STRING;
const REGISTRY_EVENT_STRING: &'static str = const REGISTRY_EVENT_STRING: &'static str = <T as BusProperties>::REGISTRY_EVENT_STRING;
A registry event string for registering for event receiving via the
RegistryProxy
.
This should be deprecated in favour of composing the string from BusProperties::DBUS_MEMBER
and BusProperties::DBUS_INTERFACE
.Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> MessageConversionExt<ObjectRef> for Twhere
T: MessageConversion<Body = ObjectRef>,
impl<T> MessageConversionExt<ObjectRef> for Twhere
T: MessageConversion<Body = ObjectRef>,
Source§fn try_from_message(msg: &Message) -> Result<T, AtspiError>
fn try_from_message(msg: &Message) -> Result<T, AtspiError>
Convert a
zbus::Message
into this event type.
Does all the validation for you. Read moreSource§fn validate_interface(msg: &Message) -> Result<(), AtspiError>
fn validate_interface(msg: &Message) -> Result<(), AtspiError>
Validate the interface string via
zbus::message::Header::interface
against Self
’s assignment of BusProperties::DBUS_INTERFACE
Read moreSource§fn validate_member(msg: &Message) -> Result<(), AtspiError>
fn validate_member(msg: &Message) -> Result<(), AtspiError>
Validate the member string via
zbus::message::Header::member
against Self
’s assignment of BusProperties::DBUS_MEMBER
Read more