pub trait Predicate: Send + Sync {
// Required method
fn matches(&self, exchange: &Exchange) -> bool;
}Expand description
Predicate — a boolean test over an Exchange. Separate from Processor because EIPs like Filter/Choice compose predicates, not processors.