dbus-message-parser 2.3.0

Libary to encode and decode DBus message
Documentation
1
2
3
4
5
6
7
8
9
10
/// An enum representing the [message type].
///
/// [message type]: https://dbus.freedesktop.org/doc/dbus-specification.html#message-protocol-types
#[derive(Debug, PartialOrd, PartialEq, Ord, Eq, Clone, FromPrimitive, ToPrimitive)]
pub enum MessageType {
    MethodCall = 1,
    MethodReturn = 2,
    Error = 3,
    Signal = 4,
}