fix: update filter_plugin import paths and mark unused field

Co-authored-by: aider (openai/andrew/openrouter/deepseek/deepseek-chat-v3.1) <aider@aider.chat>
This commit is contained in:
Andrew Phillips
2025-08-29 10:21:12 -03:00
parent 625236f8df
commit 694ad0e63a
3 changed files with 6 additions and 6 deletions

View File

@@ -4,14 +4,14 @@ use ringbuf::{HeapRb, Rb};
pub struct TailBytesFilter {
ring_buffer: HeapRb<u8>,
count: usize,
_count: usize,
}
impl TailBytesFilter {
pub fn new(count: usize) -> Self {
Self {
ring_buffer: HeapRb::new(count),
count,
_count: count,
}
}
}