A pure Rust written asynchronous DBus library.
Add this to your Cargo.toml
:
toml
[dependencies]
dbus-async = "1.0"
```rust use dbusasync::DBus; use dbusmessage_parser::Message;
async fn main() { let (dbus, serverhandle) = DBus::session(true) .await .expect("failed to get the DBus object");
// Create a MethodCall.
let msg = Message::method_call(
"org.freedesktop.DBus",
"/org/freedesktop/DBus",
"org.freedesktop.DBus.Peer",
"Ping",
);
// Send the message and get the return message.
let return_msg = dbus.call(msg).await;
// Print the return message.
println!("{:?}", return_msg);
}
``
If you want to implement a DBus service and do not implement the
dbus_async::Handlertrait
manually then use
dbus-async-derive` crate.
org.freedesktop.DBus.Peer
](https://dbus.freedesktop.org/doc/dbus-specification.html#standard-interfaces-peer)org.freedesktop.DBus.ObjectManager
](https://dbus.freedesktop.org/doc/dbus-specification.html#standard-interfaces-objectmanager)