__matches

Function __matches 

Source
pub fn __matches<'a, 's, P, Reference, R>(pat: &'a P, reference: &'s R) -> bool
where P: Pattern<'a, Reference>, R: Iterable<'s, Iter = Reference> + 's, Reference: PeekableExt, P::Dest: Destination<Reference::Item>, Reference::Item: Satisfies<<P::Iter as Iterator>::Item>,
Expand description

Internal helper used by the proc-macro to call the Pattern::matches method with the correct trait bounds so method resolution succeeds in macro expansions.