async_rustbus/rustbus_core/mod.rs
1//! Data structures and methods related to DBus wire-format.
2//!
3//! The stuff in this module is not specific to the crate's implementation of a DBus connection.
4//! Almost everything in this module is reexported from [`rustbus`]
5//! with the notable exception of the [`path`] module,
6//! which is instead home-grown.
7//!
8//! [`rustbus`]: https://crates.io/crates/rustbus
9//! [`path`]: ./path/index.html
10pub use rustbus::dbus_variant_var;
11use rustbus::message_builder as org_message_builder;
12pub use rustbus::params::validation::Error as ValError;
13pub use rustbus::signature;
14pub use rustbus::wire;
15pub use rustbus::ByteOrder;
16pub use rustbus::Error;
17
18pub mod path;
19
20pub mod message_builder;
21
22pub mod standard_messages;