From a75f46a6d4d099c6f7f29234adacd9084588c619 Mon Sep 17 00:00:00 2001 From: Jan Luca Date: Mon, 22 Dec 2025 14:35:37 +0100 Subject: [PATCH] add voltage_max_design --- upower/src/device.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/upower/src/device.rs b/upower/src/device.rs index b889e2e..bea86fa 100644 --- a/upower/src/device.rs +++ b/upower/src/device.rs @@ -183,6 +183,9 @@ pub trait Device { #[zbus(property)] fn voltage_min_design(&self) -> zbus::Result; + #[zbus(property)] + fn voltage_max_design(&self) -> zbus::Result; + #[zbus(signal)] fn enable_charge_threshold(&self, message: bool) -> zbus::Result<()>;