From 070b99e6f8258a288426d450c2aeb0b5ff748e15 Mon Sep 17 00:00:00 2001 From: sixfold Date: Sun, 1 Sep 2024 14:57:51 -0400 Subject: [PATCH] Derive `Clone` on `Context` --- src/context.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/context.rs b/src/context.rs index 7d987cb..2e22fdd 100644 --- a/src/context.rs +++ b/src/context.rs @@ -11,6 +11,7 @@ pub enum ContextValue { Function(Arc), } +#[derive(Clone)] pub struct Context(pub Arc>>); impl Context {