From fc1556add810a11195ff78849c82fbea9c1c1f89 Mon Sep 17 00:00:00 2001 From: Venus Xeon-Blonde Date: Thu, 1 Aug 2024 17:07:28 -0400 Subject: [PATCH] derive `Debug` for `transport::Service` --- src/transport.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/transport.rs b/src/transport.rs index 3a4660627f..b1ca3f8b80 100644 --- a/src/transport.rs +++ b/src/transport.rs @@ -54,7 +54,7 @@ pub trait SmartSubtransport: Send + 'static { } /// Actions that a smart transport can ask a subtransport to perform -#[derive(Copy, Clone, PartialEq)] +#[derive(Copy, Clone, PartialEq, Debug)] #[allow(missing_docs)] pub enum Service { UploadPackLs,