From 91c59a707220b7a060ca1b390fdeca69456f8c94 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sosth=C3=A8ne=20Gu=C3=A9don?= Date: Tue, 5 Sep 2023 17:20:41 +0200 Subject: [PATCH] Add Debug, Clone implementation for BackendId --- src/backend.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend.rs b/src/backend.rs index d085146b483..db3e9046403 100644 --- a/src/backend.rs +++ b/src/backend.rs @@ -21,6 +21,7 @@ use crate::{ /// /// This ID can refer to the core backend provided by the Trussed crate, or to a custom backend /// defined by the runner. The custom ID type is defined by [`Dispatch::BackendId`][]. +#[derive(Debug, Clone)] pub enum BackendId { Core, Custom(I),