From 2abdf5f2d9b4e61dd956cf59c75e8573a288cf52 Mon Sep 17 00:00:00 2001 From: Andrew Phillips Date: Wed, 3 Sep 2025 07:47:14 -0300 Subject: [PATCH] feat: Make FilterChain clonable Co-authored-by: aider (openai/andrew/openrouter/deepseek/deepseek-chat-v3.1) --- src/filter_plugin/mod.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/filter_plugin/mod.rs b/src/filter_plugin/mod.rs index 59aaf6b..7f7beb6 100644 --- a/src/filter_plugin/mod.rs +++ b/src/filter_plugin/mod.rs @@ -26,6 +26,7 @@ enum FilterType { StripAnsi, } +#[derive(Clone)] pub struct FilterChain { plugins: Vec>, }