pub trait ResourceMatcher {
type Context;
// Required method
fn do_match(
&self,
context: &Request<Self::Context>,
input: &str,
policy: &str,
) -> bool;
}Expand description
Trait to extend Policy resource matching.