Make InputFilter public (#3170)

This commit is contained in:
Dongjia "toka" Zhang 2025-04-23 15:06:52 +02:00 committed by GitHub
parent e443d68a39
commit 03a49fa5a8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -581,7 +581,8 @@ where
} }
} }
trait InputFilter<I> { /// A trait to determine if a input should be run or not
pub trait InputFilter<I> {
fn should_execute(&mut self, input: &I) -> bool; fn should_execute(&mut self, input: &I) -> bool;
} }