zbus 5.3.1

API for D-Bus communication
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
/// This mod contains a bunch of abstractions.
///
/// These abstractions allow us to make use of the appropriate API depending on which features are
/// enabled.
mod executor;
pub use executor::*;
mod async_drop;
pub(crate) mod async_lock;
pub use async_drop::*;

// Not unix-specific itself but only used on unix.
#[cfg(target_family = "unix")]
pub(crate) mod process;