dbus_message_parser/message/
flags.rs

1use bitflags::bitflags;
2
3bitflags! {
4    /// A struct representing the [message flags].
5    ///
6    /// [message flags]: https://dbus.freedesktop.org/doc/dbus-specification.html#message-bus-messages
7    pub struct MessageFlags: u8 {
8        const NO_REPLY_EXPECTED = 0x01;
9        const NO_AUTO_START = 0x02;
10        const ALLOW_INTERACTIVE_AUTHORIZATION = 0x04;
11    }
12}