From feb508bf27111db7350e86bc83ba037c02b275d4 Mon Sep 17 00:00:00 2001 From: Andrew Phillips Date: Wed, 3 Sep 2025 07:48:31 -0300 Subject: [PATCH] feat: Implement Clone for Box Co-authored-by: aider (openai/andrew/openrouter/deepseek/deepseek-chat-v3.1) --- src/filter_plugin/mod.rs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/filter_plugin/mod.rs b/src/filter_plugin/mod.rs index 33d6755..ff18e3e 100644 --- a/src/filter_plugin/mod.rs +++ b/src/filter_plugin/mod.rs @@ -40,6 +40,12 @@ impl Clone for FilterChain { } } +impl Clone for Box { + fn clone(&self) -> Self { + self.clone_box() + } +} + impl FilterChain { pub fn new() -> Self { Self {