Derive Debug on everything

This commit is contained in:
Lucy 2022-01-21 11:12:35 -05:00
parent e2c2fdea8f
commit 4c604a0758
No known key found for this signature in database
GPG key ID: EBC517FAD666BBF1
11 changed files with 12 additions and 1 deletions

View file

@ -7,6 +7,7 @@ use crate::interface::{
use std::ops::Deref;
use zbus::Result;
#[derive(Debug)]
pub struct AccessPoint<'a>(AccessPointProxy<'a>);
impl<'a> AccessPoint<'a> {