More updating to zbus 4.0.1

This commit is contained in:
Luke D. Jones
2024-02-22 23:49:35 +13:00
parent a44145f487
commit 8e4b7d53f4
50 changed files with 3151 additions and 2932 deletions

View File

@@ -21,9 +21,9 @@
//! …consequently `zbus-xmlgen` did not generate code for the above interfaces.
use rog_platform::platform::{GpuMode, Properties, ThrottlePolicy};
use zbus::dbus_proxy;
use zbus::proxy;
#[dbus_proxy(
#[proxy(
interface = "org.asuslinux.Daemon",
default_service = "org.asuslinux.Daemon",
default_path = "/org/asuslinux/Platform"
@@ -39,88 +39,88 @@ trait Platform {
fn supported_properties(&self) -> zbus::Result<Vec<Properties>>;
/// ChargeControlEndThreshold property
#[dbus_proxy(property)]
#[zbus(property)]
fn charge_control_end_threshold(&self) -> zbus::Result<u8>;
#[dbus_proxy(property)]
#[zbus(property)]
fn set_charge_control_end_threshold(&self, value: u8) -> zbus::Result<()>;
/// DgpuDisable property
#[dbus_proxy(property)]
#[zbus(property)]
fn dgpu_disable(&self) -> zbus::Result<bool>;
/// EgpuEnable property
#[dbus_proxy(property)]
#[zbus(property)]
fn egpu_enable(&self) -> zbus::Result<bool>;
/// GpuMuxMode property
#[dbus_proxy(property)]
#[zbus(property)]
fn gpu_mux_mode(&self) -> zbus::Result<u8>;
#[dbus_proxy(property)]
#[zbus(property)]
fn set_gpu_mux_mode(&self, value: GpuMode) -> zbus::Result<()>;
/// MiniLedMode property
#[dbus_proxy(property)]
#[zbus(property)]
fn mini_led_mode(&self) -> zbus::Result<bool>;
#[dbus_proxy(property)]
#[zbus(property)]
fn set_mini_led_mode(&self, value: bool) -> zbus::Result<()>;
/// NvDynamicBoost property
#[dbus_proxy(property)]
#[zbus(property)]
fn nv_dynamic_boost(&self) -> zbus::Result<u8>;
#[dbus_proxy(property)]
#[zbus(property)]
fn set_nv_dynamic_boost(&self, value: u8) -> zbus::Result<()>;
/// NvTempTarget property
#[dbus_proxy(property)]
#[zbus(property)]
fn nv_temp_target(&self) -> zbus::Result<u8>;
#[dbus_proxy(property)]
#[zbus(property)]
fn set_nv_temp_target(&self, value: u8) -> zbus::Result<()>;
/// PanelOd property
#[dbus_proxy(property)]
#[zbus(property)]
fn panel_od(&self) -> zbus::Result<bool>;
#[dbus_proxy(property)]
#[zbus(property)]
fn set_panel_od(&self, value: bool) -> zbus::Result<()>;
/// PostAnimationSound property
#[dbus_proxy(property)]
#[zbus(property)]
fn post_animation_sound(&self) -> zbus::Result<bool>;
#[dbus_proxy(property)]
#[zbus(property)]
fn set_post_animation_sound(&self, value: bool) -> zbus::Result<()>;
/// PptApuSppt property
#[dbus_proxy(property)]
#[zbus(property)]
fn ppt_apu_sppt(&self) -> zbus::Result<u8>;
#[dbus_proxy(property)]
#[zbus(property)]
fn set_ppt_apu_sppt(&self, value: u8) -> zbus::Result<()>;
/// PptFppt property
#[dbus_proxy(property)]
#[zbus(property)]
fn ppt_fppt(&self) -> zbus::Result<u8>;
#[dbus_proxy(property)]
#[zbus(property)]
fn set_ppt_fppt(&self, value: u8) -> zbus::Result<()>;
/// PptPl1Spl property
#[dbus_proxy(property)]
#[zbus(property)]
fn ppt_pl1_spl(&self) -> zbus::Result<u8>;
#[dbus_proxy(property)]
#[zbus(property)]
fn set_ppt_pl1_spl(&self, value: u8) -> zbus::Result<()>;
/// PptPl2Sppt property
#[dbus_proxy(property)]
#[zbus(property)]
fn ppt_pl2_sppt(&self) -> zbus::Result<u8>;
#[dbus_proxy(property)]
#[zbus(property)]
fn set_ppt_pl2_sppt(&self, value: u8) -> zbus::Result<()>;
/// PptPlatformSppt property
#[dbus_proxy(property)]
#[zbus(property)]
fn ppt_platform_sppt(&self) -> zbus::Result<u8>;
#[dbus_proxy(property)]
#[zbus(property)]
fn set_ppt_platform_sppt(&self, value: u8) -> zbus::Result<()>;
/// ThrottlePolicy property
#[dbus_proxy(property)]
#[zbus(property)]
fn throttle_thermal_policy(&self) -> zbus::Result<ThrottlePolicy>;
#[dbus_proxy(property)]
#[zbus(property)]
fn set_throttle_thermal_policy(&self, value: ThrottlePolicy) -> zbus::Result<()>;
}