dbus_tokio/
lib.rs

1#![warn(missing_docs)]
2//! Tokio integration for dbus
3//!
4//! This crate contains code for interfacing `dbus` with `tokio`, enabling async/non-blocking operation.
5//!
6//! This crate contains only the connection components, most of the async code is in the `dbus::nonblock`
7//! module, where you can find additional information.
8//!
9//! There are some examples in the examples directory to help you get started.
10
11pub mod connection;