zbus_xmlgen 5.3.1

D-Bus XML interface code generator
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Verify that the generated code in test fixtures compiles against the current
//! zbus types. Catches regressions where xmlgen emits code that no longer
//! satisfies the trait bounds expected by the `#[proxy]` macro.

mod sample_object0 {
    use zbus::proxy;
    include!("data/sample_object0.rs");
}

mod struct_return {
    use zbus::proxy;
    include!("data/struct_return.rs");
}

mod property_setters {
    use zbus::proxy;
    include!("data/property_setters.rs");
}