feat: Make FilterChain clonable

Co-authored-by: aider (openai/andrew/openrouter/deepseek/deepseek-chat-v3.1) <aider@aider.chat>
This commit is contained in:
Andrew Phillips
2025-09-03 07:47:14 -03:00
parent 0d575e8850
commit 2abdf5f2d9

View File

@@ -26,6 +26,7 @@ enum FilterType {
StripAnsi, StripAnsi,
} }
#[derive(Clone)]
pub struct FilterChain { pub struct FilterChain {
plugins: Vec<Box<dyn FilterPlugin>>, plugins: Vec<Box<dyn FilterPlugin>>,
} }