dbus 0.7.1

Bindings to D-Bus, which is a bus commonly used on Linux for inter-process communication.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Will eventually superseed the "tree" module. It's unstable and experimental for now.
#![allow(unused_imports, dead_code, missing_docs)]

mod info;
mod handlers;
mod crossroads;
mod stdimpl;

pub use crate::tree::MethodErr as MethodErr;

pub use self::info::{IfaceInfo, MethodInfo, PropInfo};

pub use self::crossroads::{Crossroads, PathData};

pub use self::handlers::{Handlers, Par, ParInfo};