zbus 5.12.0

API for D-Bus communication
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use test_log::test;

#[test]
#[ignore]
fn issue_466() {
    #[zbus::proxy(interface = "org.Some.Thing1", assume_defaults = true)]
    trait MyGreeter {
        fn foo(
            &self,
            arg: &(u32, zbus::zvariant::Value<'_>),
        ) -> zbus::Result<(u32, zbus::zvariant::OwnedValue)>;

        #[zbus(property)]
        fn bar(&self) -> zbus::Result<(u32, zbus::zvariant::OwnedValue)>;
    }
}