From a7816ef6c4d6f9e20f670823de94446a8a852fd5 Mon Sep 17 00:00:00 2001 From: Nathan Flurry Date: Tue, 9 Jan 2024 21:43:12 +0000 Subject: [PATCH] Make GlobalError derive Clone (#329) ## Changes --- lib/global-error/src/error.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/global-error/src/error.rs b/lib/global-error/src/error.rs index 3a40d0d1ca..4059f2b115 100644 --- a/lib/global-error/src/error.rs +++ b/lib/global-error/src/error.rs @@ -8,7 +8,7 @@ use types::rivet::chirp; pub type GlobalResult = Result; -#[derive(Debug)] +#[derive(Debug, Clone)] pub enum GlobalError { Internal { ty: String,