usesuper::*;/// Matches on the inverse of the inner [`Term`] or [`GraphName`]
pubstructNot<M>(pub M);impl<M: TermMatcher> TermMatcher forNot<M>{typeTerm=SimpleTerm<'static>;// not actually used
fnmatches<T2: Term +?Sized>(&self, term:&T2)->bool{!self.0.matches(term)}}