Split into workspaces, move proxy module into its own crate

This commit is contained in:
Vicki Pfau 2025-07-04 16:02:38 -07:00
parent 9ddfde23e6
commit 46dc187b34
56 changed files with 127 additions and 106 deletions

View file

@ -0,0 +1,41 @@
//! # D-Bus interface proxy for: `com.steampowered.SteamOSManager1.WifiDebug1`
//!
//! This code was generated by `zbus-xmlgen` `5.0.1` 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.WifiDebug1",
default_service = "com.steampowered.SteamOSManager1",
default_path = "/com/steampowered/SteamOSManager1",
assume_defaults = true
)]
pub trait WifiDebug1 {
/// CaptureDebugTraceOutput method
fn capture_debug_trace_output(&self) -> zbus::Result<String>;
/// SetWifiDebugMode method
fn set_wifi_debug_mode(
&self,
mode: u32,
options: std::collections::HashMap<&str, &zbus::zvariant::Value<'_>>,
) -> zbus::Result<()>;
/// WifiBackend property
#[zbus(property)]
fn wifi_backend(&self) -> zbus::Result<String>;
#[zbus(property)]
fn set_wifi_backend(&self, value: &str) -> zbus::Result<()>;
/// WifiDebugModeState property
#[zbus(property)]
fn wifi_debug_mode_state(&self) -> zbus::Result<u32>;
}