Introduce Sealed type instead of Box<dyn Filter>

This commit is contained in:
Nikolay Kim 2021-12-23 15:51:35 +06:00
parent 85a9485bac
commit 329ad46377
8 changed files with 50 additions and 21 deletions

View file

@ -516,7 +516,7 @@ mod tests {
.add_filter(CounterFactory(in_bytes.clone(), out_bytes.clone()))
.await
.unwrap();
let state = state.into_boxed();
let state = state.seal();
client.remote_buffer_cap(1024);
client.write(TEXT);