mirror of
https://gitlab.com/asus-linux/asusctl.git
synced 2026-02-06 00:15:04 +01:00
57 lines
1.9 KiB
Rust
57 lines
1.9 KiB
Rust
//! # D-Bus interface proxy for: `xyz.ljones.ScsiAura`
|
|
//!
|
|
//! This code was generated by `zbus-xmlgen` `5.0.1` from D-Bus introspection
|
|
//! data. Source: `Interface '/xyz/ljones/M3D0AP048745_scsi' from service
|
|
//! 'xyz.ljones.Asusd' on system bus`.
|
|
//!
|
|
//! 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.
|
|
//!
|
|
//! This type implements the [D-Bus standard interfaces],
|
|
//! (`org.freedesktop.DBus.*`) for which the following zbus API can be used:
|
|
//!
|
|
//! * [`zbus::fdo::PeerProxy`]
|
|
//! * [`zbus::fdo::PropertiesProxy`]
|
|
//! * [`zbus::fdo::IntrospectableProxy`]
|
|
//!
|
|
//! Consequently `zbus-xmlgen` did not generate code for the above interfaces.
|
|
//!
|
|
//! [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 rog_scsi::{AuraEffect, AuraMode};
|
|
use zbus::proxy;
|
|
#[proxy(
|
|
interface = "xyz.ljones.ScsiAura",
|
|
default_service = "xyz.ljones.Asusd",
|
|
default_path = "/xyz/ljones"
|
|
)]
|
|
pub trait ScsiAura {
|
|
/// AllModeData method
|
|
#[allow(clippy::type_complexity)]
|
|
fn all_mode_data(&self) -> zbus::Result<std::collections::HashMap<AuraMode, AuraEffect>>;
|
|
|
|
/// DeviceType property
|
|
#[zbus(property)]
|
|
fn device_type(&self) -> zbus::Result<u32>;
|
|
|
|
/// Enabled property
|
|
#[zbus(property)]
|
|
fn enabled(&self) -> zbus::Result<bool>;
|
|
#[zbus(property)]
|
|
fn set_enabled(&self, value: bool) -> zbus::Result<()>;
|
|
|
|
/// LedMode property
|
|
#[zbus(property)]
|
|
fn led_mode(&self) -> zbus::Result<u8>;
|
|
#[zbus(property)]
|
|
fn set_led_mode(&self, mode: AuraMode) -> zbus::Result<()>;
|
|
|
|
/// LedModeData property
|
|
#[zbus(property)]
|
|
fn led_mode_data(&self) -> zbus::Result<AuraEffect>;
|
|
#[zbus(property)]
|
|
fn set_led_mode_data(&self, effect: AuraEffect) -> zbus::Result<()>;
|
|
}
|