tokio-dbus-runtime
Runtime support for the code generated by tokio-dbus-codegen.
Where tokio-dbus speaks in borrowed views over a message buffer, this
crate speaks in the owned Rust types a caller would reach for anyway:
[String], [Vec], HashMap and tuples, with a [Value] standing in for
a variant. That convenience is paid for with a copy of every message which
crosses the boundary, so reach for the low level API when that matters.
Examples
use ;
use ;
const PATH: &ObjectPath = new_const;
let mut c = session_bus.await?;
let mut arguments = new?;
arguments.store;
let reply = c
.call
.await?;
let owner = reply.?;
println!;