Derive Debug on everything
This commit is contained in:
parent
e2c2fdea8f
commit
4c604a0758
11 changed files with 12 additions and 1 deletions
|
|
@ -5,6 +5,7 @@ use crate::interface::device::{bluetooth::BluetoothDeviceProxy, DeviceProxy};
|
|||
use std::ops::Deref;
|
||||
use zbus::Result;
|
||||
|
||||
#[derive(Debug)]
|
||||
pub struct BluetoothDevice<'a>(BluetoothDeviceProxy<'a>);
|
||||
|
||||
impl<'a> BluetoothDevice<'a> {
|
||||
|
|
|
|||
|
|
@ -5,6 +5,7 @@ use crate::interface::device::{wired::WiredDeviceProxy, DeviceProxy};
|
|||
use std::ops::Deref;
|
||||
use zbus::Result;
|
||||
|
||||
#[derive(Debug)]
|
||||
pub struct WiredDevice<'a>(WiredDeviceProxy<'a>);
|
||||
|
||||
impl<'a> WiredDevice<'a> {
|
||||
|
|
|
|||
|
|
@ -12,6 +12,7 @@ use crate::{
|
|||
use std::ops::Deref;
|
||||
use zbus::Result;
|
||||
|
||||
#[derive(Debug)]
|
||||
pub struct WirelessDevice<'a>(WirelessDeviceProxy<'a>);
|
||||
|
||||
impl<'a> WirelessDevice<'a> {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue