proxy: Split out per-file and re-export relevant proxies

This commit is contained in:
Vicki Pfau 2024-07-31 20:02:46 -07:00
parent 72e633e336
commit 428350b4c7
20 changed files with 575 additions and 62 deletions

28
src/proxy/manager2.rs Normal file
View file

@ -0,0 +1,28 @@
//! # D-Bus interface proxy for: `com.steampowered.SteamOSManager1.Manager2`
//!
//! This code was generated by `zbus-xmlgen` `4.1.0` from D-Bus introspection data.
//! Source: `com.steampowered.SteamOSManager1.xml`.
//!
//! You may prefer to adapt it, instead of using it verbatim.
//!
//! More information can be found in the [Writing a client proxy] section of the zbus
//! documentation.
//!
//!
//! [Writing a client proxy]: https://dbus2.github.io/zbus/client.html
//! [D-Bus standard interfaces]: https://dbus.freedesktop.org/doc/dbus-specification.html#standard-interfaces,
use zbus::proxy;
#[proxy(
interface = "com.steampowered.SteamOSManager1.Manager2",
default_service = "com.steampowered.SteamOSManager1",
default_path = "/com/steampowered/SteamOSManager1",
assume_defaults = true
)]
trait Manager2 {
/// ReloadConfig method
fn reload_config(&self) -> zbus::Result<()>;
/// HardwareCurrentlySupported property
#[zbus(property)]
fn hardware_currently_supported(&self) -> zbus::Result<u32>;
}