Expand description
ยงzbus_names
This crate provides collection of types for various D-Bus bus names.
This is used by zbus (and in future by zbus_macros as well) crate. Other D-Bus crates are also
encouraged to use this API in the spirit of cooperation. :)
For convenience, zbus re-exports this crate as names, so you do not need to depend directly on
this crate if you already depend on zbus.
Status: Stable.
Modulesยง
- bus_
name ๐ - error ๐
- error_
name ๐ - interface_
name ๐ - member_
name ๐ - property_
name ๐ - unique_
name ๐ - utils ๐
- well_
known_ ๐name
Structsยง
- Error
Name - String that identifies an error name on the bus.
- Interface
Name - String that identifies an interface name on the bus.
- Member
Name - String that identifies an member (method or signal) name on the bus.
- Owned
BusName - Owned sibling of
BusName. - Owned
Error Name - Owned sibling of
ErrorName. - Owned
Interface Name - Owned sibling of
InterfaceName. - Owned
Member Name - Owned sibling of
MemberName. - Owned
Property Name - Owned sibling of
PropertyName. - Owned
Unique Name - Owned sibling of
UniqueName. - Owned
Well Known Name - Owned sibling of
WellKnownName. - Property
Name - String that identifies a property name on the bus.
- Unique
Name - String that identifies a unique bus name.
- Well
Known Name - String that identifies a well-known bus name.
Enumsยง
Type Aliasesยง
- Result
- Alias for a
Resultwith the error typezbus_names::Error.