dbus-async 2.3.1

Asynchronous DBus library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
bitflags! {
    /// An enum representing a [flag] for the [`RequestName`] method. see [`request_name`]
    ///
    /// [flag]: https://dbus.freedesktop.org/doc/dbus-specification.html#bus-messages-request-name
    /// [`RequestName`]: https://dbus.freedesktop.org/doc/dbus-specification.html#bus-messages-request-name
    /// [`request_name`]: crate::DBus::request_name
    pub struct DBusNameFlag: u32 {
        const ALLOW_REPLACEMENT = 0x01;
        const REPLACE_EXISTING = 0x02;
        const DO_NOT_QUEUE = 0x04;
    }
}