tokio-dbus 0.2.0

Pure Rust D-Bus implementation for Tokio.
Documentation
1
2
3
4
5
6
7
8
9
10
pub(crate) mod sealed {
    pub trait Sealed {}
}

/// An alignment marker.
pub trait Aligned: self::sealed::Sealed {
    /// The type this type is aligned with.
    #[doc(hidden)]
    type Alignment;
}