Struct tokio_dbus::Message
source · pub struct Message<'a> { /* private fields */ }Expand description
A borrowed D-Bus message.
This is the borrowed variant of OwnedMessage, to convert to an
OwnedMessage, use Message::to_owned.
Implementations§
source§impl<'a> Message<'a>
impl<'a> Message<'a>
sourcepub fn method_call(
path: &'a ObjectPath,
member: &'a str,
serial: NonZeroU32
) -> Self
pub fn method_call( path: &'a ObjectPath, member: &'a str, serial: NonZeroU32 ) -> Self
Construct a method call Message.
Examples
use std::num::NonZeroU32;
use tokio_dbus::{Message, ObjectPath, SendBuf};
const PATH: &ObjectPath = ObjectPath::new_const(b"/org/freedesktop/DBus");
let mut send = SendBuf::new();
let m = send.method_call(PATH, "Hello");
let m2 = Message::method_call(PATH, "Hello", m.serial());
assert_eq!(m, m2);sourcepub fn method_return(&self, serial: NonZeroU32) -> Self
pub fn method_return(&self, serial: NonZeroU32) -> Self
Convert this message into a [MessageKind::MessageReturn] message with
an empty body where the reply serial matches that of the current
message.
The send argument is used to populate the next serial number.
Examples
use std::num::NonZeroU32;
use tokio_dbus::{Message, MessageKind, ObjectPath, SendBuf};
const PATH: &ObjectPath = ObjectPath::new_const(b"/org/freedesktop/DBus");
let mut send = SendBuf::new();
let m = send.method_call(PATH, "Hello")
.with_sender("se.tedro.DBusExample")
.with_destination("org.freedesktop.DBus");
let m2 = m.method_return(send.next_serial());
assert!(matches!(m2.kind(), MessageKind::MethodReturn { .. }));
assert_eq!(m.sender(), m2.destination());
assert_eq!(m.destination(), m2.sender());sourcepub fn signal(member: &'a str, serial: NonZeroU32) -> Self
pub fn signal(member: &'a str, serial: NonZeroU32) -> Self
Construct a signal Message.
Examples
use std::num::NonZeroU32;
use tokio_dbus::{Message, ObjectPath, SendBuf};
const PATH: &ObjectPath = ObjectPath::new_const(b"/org/freedesktop/DBus");
let mut send = SendBuf::new();
let m = send.signal("Hello");
let m2 = Message::signal("Hello", m.serial());
assert_eq!(m, m2);sourcepub fn error(&self, error_name: &'a str, serial: NonZeroU32) -> Self
pub fn error(&self, error_name: &'a str, serial: NonZeroU32) -> Self
Convert this message into a MessageKind::Error message with
an empty body where the reply serial matches that of the current
message.
Examples
use std::num::NonZeroU32;
use tokio_dbus::{Message, MessageKind, ObjectPath, SendBuf};
const PATH: &ObjectPath = ObjectPath::new_const(b"/org/freedesktop/DBus");
let mut send = SendBuf::new();
let m = send.method_call(PATH, "Hello")
.with_sender("se.tedro.DBusExample")
.with_destination("org.freedesktop.DBus");
let m2 = m.error("org.freedesktop.DBus.UnknownMethod", send.next_serial());
assert!(matches!(m2.kind(), MessageKind::Error { .. }));
assert_eq!(m.sender(), m2.destination());
assert_eq!(m.destination(), m2.sender());sourcepub fn to_owned(&self) -> OwnedMessage
pub fn to_owned(&self) -> OwnedMessage
Convert into an owned OwnedMessage.
Examples
use std::num::NonZeroU32;
use tokio_dbus::{Message, OwnedMessage, ObjectPath, SendBuf};
const PATH: &ObjectPath = ObjectPath::new_const(b"/org/freedesktop/DBus");
let mut send = SendBuf::new();
let m = send.method_call(PATH, "Hello").to_owned();
let m2 = OwnedMessage::method_call(PATH.into(), "Hello".into(), m.serial());
assert_eq!(m, m2);sourcepub fn kind(&self) -> MessageKind<'a>
pub fn kind(&self) -> MessageKind<'a>
Get the kind of the message.
Examples
use std::num::NonZeroU32;
use tokio_dbus::{Message, MessageKind, ObjectPath, SendBuf};
const PATH: &ObjectPath = ObjectPath::new_const(b"/org/freedesktop/DBus");
let mut send = SendBuf::new();
let m = send.method_call(PATH, "Hello");
assert!(matches!(m.kind(), MessageKind::MethodCall { .. }));
let m2 = m.error("org.freedesktop.DBus.UnknownMethod", send.next_serial());
assert!(matches!(m2.kind(), MessageKind::Error { .. }));sourcepub fn with_body_buf(self, body: &'a BodyBuf) -> Self
pub fn with_body_buf(self, body: &'a BodyBuf) -> Self
Modify the body and signature of the message to match that of the provided body buffer.
Examples
use std::num::NonZeroU32;
use tokio_dbus::{BodyBuf, Message, MessageKind, ObjectPath, SendBuf, Signature};
const PATH: &ObjectPath = ObjectPath::new_const(b"/org/freedesktop/DBus");
let mut send = SendBuf::new();
let mut body = BodyBuf::new();
body.write("Hello World!");
let m = send.method_call(PATH, "Hello")
.with_body_buf(&body);
assert!(matches!(m.kind(), MessageKind::MethodCall { .. }));
assert_eq!(m.signature(), Signature::STRING);sourcepub fn body(&self) -> ReadBuf<'a>
pub fn body(&self) -> ReadBuf<'a>
Get a buffer to the body of the message.
Examples
use std::num::NonZeroU32;
use tokio_dbus::{BodyBuf, Message, MessageKind, ObjectPath, SendBuf, Signature};
const PATH: &ObjectPath = ObjectPath::new_const(b"/org/freedesktop/DBus");
let mut send = SendBuf::new();
let mut body = BodyBuf::new();
body.store(42u32);
body.write("Hello World!");
let m = send.method_call(PATH, "Hello")
.with_body_buf(&body);
assert!(matches!(m.kind(), MessageKind::MethodCall { .. }));
assert_eq!(m.signature(), Signature::new(b"us")?);
let mut r = m.body();
assert_eq!(r.load::<u32>()?, 42);
assert_eq!(r.read::<str>()?, "Hello World!");sourcepub fn with_body(self, body: ReadBuf<'a>) -> Self
pub fn with_body(self, body: ReadBuf<'a>) -> Self
Modify the body of the message.
Examples
use std::num::NonZeroU32;
use tokio_dbus::{BodyBuf, Message, MessageKind, ObjectPath, SendBuf, Signature};
const PATH: &ObjectPath = ObjectPath::new_const(b"/org/freedesktop/DBus");
let mut send = SendBuf::new();
let mut body = BodyBuf::new();
body.store(42u32);
body.write("Hello World!");
let m = send.method_call(PATH, "Hello")
.with_body(body.read())
.with_signature(body.signature());
assert!(matches!(m.kind(), MessageKind::MethodCall { .. }));
assert_eq!(m.signature(), Signature::new(b"us")?);
let mut r = m.body();
assert_eq!(r.load::<u32>()?, 42);
assert_eq!(r.read::<str>()?, "Hello World!");sourcepub fn serial(&self) -> NonZeroU32
pub fn serial(&self) -> NonZeroU32
Get the serial of the message.
Examples
use std::num::NonZeroU32;
use tokio_dbus::{Message, ObjectPath, SendBuf};
const PATH: &ObjectPath = ObjectPath::new_const(b"/org/freedesktop/DBus");
let mut send = SendBuf::new();
let m = send.method_call(PATH, "Hello");
assert_eq!(m.serial().get(), 1);
let m2 = m.with_serial(NonZeroU32::new(1000).unwrap());
assert_eq!(m2.serial().get(), 1000);sourcepub fn with_serial(self, serial: NonZeroU32) -> Self
pub fn with_serial(self, serial: NonZeroU32) -> Self
Modify the serial of the message.
Examples
use std::num::NonZeroU32;
use tokio_dbus::{Message, ObjectPath, SendBuf};
const PATH: &ObjectPath = ObjectPath::new_const(b"/org/freedesktop/DBus");
let mut send = SendBuf::new();
let m = send.method_call(PATH, "Hello");
assert_eq!(m.serial().get(), 1);
let m2 = m.with_serial(NonZeroU32::new(1000).unwrap());
assert_eq!(m2.serial().get(), 1000);sourcepub fn flags(&self) -> Flags
pub fn flags(&self) -> Flags
Get the flags of the message.
Examples
use std::num::NonZeroU32;
use tokio_dbus::{Flags, Message, ObjectPath, SendBuf};
const PATH: &ObjectPath = ObjectPath::new_const(b"/org/freedesktop/DBus");
let mut send = SendBuf::new();
let m = send.method_call(PATH, "Hello");
assert_eq!(m.flags(), Flags::default());
let m2 = m.with_flags(Flags::NO_REPLY_EXPECTED);
assert_eq!(m2.flags(), Flags::NO_REPLY_EXPECTED);sourcepub fn with_flags(self, flags: Flags) -> Self
pub fn with_flags(self, flags: Flags) -> Self
Modify the flags of the message.
Examples
use std::num::NonZeroU32;
use tokio_dbus::{Flags, Message, ObjectPath, SendBuf};
const PATH: &ObjectPath = ObjectPath::new_const(b"/org/freedesktop/DBus");
let mut send = SendBuf::new();
let m = send.method_call(PATH, "Hello");
assert_eq!(m.flags(), Flags::default());
let m2 = m.with_flags(Flags::NO_REPLY_EXPECTED);
assert_eq!(m2.flags(), Flags::NO_REPLY_EXPECTED);sourcepub fn interface(&self) -> Option<&'a str>
pub fn interface(&self) -> Option<&'a str>
Get the interface of the message.
Examples
use std::num::NonZeroU32;
use tokio_dbus::{Message, ObjectPath, SendBuf};
const PATH: &ObjectPath = ObjectPath::new_const(b"/org/freedesktop/DBus");
let mut send = SendBuf::new();
let m = send.method_call(PATH, "Hello");
assert_eq!(m.interface(), None);
let m2 = m.with_interface("org.freedesktop.DBus");
assert_eq!(m2.interface(), Some("org.freedesktop.DBus"));sourcepub fn with_interface(self, interface: &'a str) -> Self
pub fn with_interface(self, interface: &'a str) -> Self
Modify the interface of the message.
Examples
use std::num::NonZeroU32;
use tokio_dbus::{Message, ObjectPath, SendBuf};
const PATH: &ObjectPath = ObjectPath::new_const(b"/org/freedesktop/DBus");
let mut send = SendBuf::new();
let m = send.method_call(PATH, "Hello");
assert_eq!(m.interface(), None);
let m2 = m.with_interface("org.freedesktop.DBus");
assert_eq!(m2.interface(), Some("org.freedesktop.DBus"));sourcepub fn destination(&self) -> Option<&'a str>
pub fn destination(&self) -> Option<&'a str>
Get the destination of the message.
Examples
use std::num::NonZeroU32;
use tokio_dbus::{Message, ObjectPath, SendBuf};
const PATH: &ObjectPath = ObjectPath::new_const(b"/org/freedesktop/DBus");
let mut send = SendBuf::new();
let m = send.method_call(PATH, "Hello");
assert_eq!(m.destination(), None);
let m2 = m.with_destination(":1.131");
assert_eq!(m2.destination(), Some(":1.131"));sourcepub fn with_destination(self, destination: &'a str) -> Self
pub fn with_destination(self, destination: &'a str) -> Self
Modify the destination of the message.
Examples
use std::num::NonZeroU32;
use tokio_dbus::{Message, ObjectPath, SendBuf};
const PATH: &ObjectPath = ObjectPath::new_const(b"/org/freedesktop/DBus");
let mut send = SendBuf::new();
let m = send.method_call(PATH, "Hello");
assert_eq!(m.destination(), None);
let m2 = m.with_destination(":1.131");
assert_eq!(m2.destination(), Some(":1.131"));sourcepub fn sender(&self) -> Option<&'a str>
pub fn sender(&self) -> Option<&'a str>
Get the sender of the message.
Examples
use std::num::NonZeroU32;
use tokio_dbus::{Message, ObjectPath, SendBuf};
const PATH: &ObjectPath = ObjectPath::new_const(b"/org/freedesktop/DBus");
let mut send = SendBuf::new();
let m = send.method_call(PATH, "Hello");
assert_eq!(m.destination(), None);
let m2 = m.with_sender(":1.131");
assert_eq!(m2.sender(), Some(":1.131"));sourcepub fn with_sender(self, sender: &'a str) -> Self
pub fn with_sender(self, sender: &'a str) -> Self
Modify the sender of the message.
Examples
use std::num::NonZeroU32;
use tokio_dbus::{Message, ObjectPath, SendBuf};
const PATH: &ObjectPath = ObjectPath::new_const(b"/org/freedesktop/DBus");
let mut send = SendBuf::new();
let m = send.method_call(PATH, "Hello");
assert_eq!(m.destination(), None);
let m2 = m.with_sender(":1.131");
assert_eq!(m2.sender(), Some(":1.131"));sourcepub fn signature(&self) -> &Signature
pub fn signature(&self) -> &Signature
Get the signature of the message.
Examples
use std::num::NonZeroU32;
use tokio_dbus::{Message, ObjectPath, SendBuf, Signature};
const PATH: &ObjectPath = ObjectPath::new_const(b"/org/freedesktop/DBus");
let mut send = SendBuf::new();
let m = send.method_call(PATH, "Hello");
assert_eq!(m.signature(), Signature::EMPTY);
let m2 = m.with_signature(Signature::STRING);
assert_eq!(m2.signature(), Signature::STRING);sourcepub fn with_signature(self, signature: &'a Signature) -> Self
pub fn with_signature(self, signature: &'a Signature) -> Self
Modify the signature of the message.
Examples
use std::num::NonZeroU32;
use tokio_dbus::{Message, ObjectPath, Signature, SendBuf};
const PATH: &ObjectPath = ObjectPath::new_const(b"/org/freedesktop/DBus");
let mut send = SendBuf::new();
let m = send.method_call(PATH, "Hello");
assert_eq!(m.signature(), Signature::EMPTY);
let m2 = m.with_signature(Signature::STRING);
assert_eq!(m2.signature(), Signature::STRING);Trait Implementations§
source§impl PartialEq<Message<'_>> for OwnedMessage
impl PartialEq<Message<'_>> for OwnedMessage
source§impl PartialEq<OwnedMessage> for Message<'_>
impl PartialEq<OwnedMessage> for Message<'_>
source§fn eq(&self, other: &OwnedMessage) -> bool
fn eq(&self, other: &OwnedMessage) -> bool
self and other values to be equal, and is used
by ==.