manager/user: Move relevant methods to Manager2, update as specified

This commit is contained in:
Vicki Pfau 2024-07-29 20:23:26 -07:00
parent a661df64a1
commit 41382c7158
5 changed files with 62 additions and 62 deletions

View file

@ -19,9 +19,6 @@ use zbus::proxy;
assume_defaults = true
)]
trait Manager {
/// ReloadConfig method
fn reload_config(&self) -> zbus::Result<()>;
/// SetWifiDebugMode method
fn set_wifi_debug_mode(&self, mode: u32, buffer_size: u32) -> zbus::Result<()>;
@ -41,10 +38,6 @@ trait Manager {
#[zbus(property)]
fn gpu_power_profiles(&self) -> zbus::Result<std::collections::HashMap<u32, String>>;
/// HardwareCurrentlySupported property
#[zbus(property)]
fn hardware_currently_supported(&self) -> zbus::Result<u32>;
/// ManualGpuClock property
#[zbus(property)]
fn manual_gpu_clock(&self) -> zbus::Result<u32>;