Derive or impl fmt::Debug on several structs.

Signed-off-by: Jason Volk <jason@zemos.net>
This commit is contained in:
Jason Volk
2025-11-25 21:33:40 +00:00
parent 8bb0d02619
commit 442a5aafeb
3 changed files with 10 additions and 2 deletions

View File

@@ -2,7 +2,7 @@ use std::{ops::Deref, sync::Arc};
use tuwunel_service::Services;
#[derive(Clone, Copy)]
#[derive(Clone, Copy, Debug)]
pub struct State {
services: *const Services,
}