1// Take a look at the license at the top of the repository in the LICENSE file.
23use std::fmt;
45use crate::DBusMessage;
67impl fmt::Display for DBusMessage {
8fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
9write!(f, "{}", self.print(0))
10 }
11}