Skip to content

Commit 89b4a7e

Browse files
committed
Add Debug trait to structs
1 parent 44a9683 commit 89b4a7e

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/interface.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ macro_rules! deserialize_obj {
2626
}
2727

2828
/// Convenience class containing required Python objects
29+
#[derive(Debug)]
2930
struct HWILib {
3031
commands: Py<PyModule>,
3132
json_dumps: Py<PyAny>,
@@ -44,6 +45,7 @@ impl HWILib {
4445
}
4546
}
4647

48+
#[derive(Debug)]
4749
pub struct HWIClient {
4850
hwilib: HWILib,
4951
hw_client: PyObject,

0 commit comments

Comments
 (0)