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

View File

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