Searched refs:WherePredicate (Results 1 – 9 of 9) sorted by relevance
| /linux/rust/syn/ |
| H A D | generics.rs | 469 pub predicates: Punctuated<WherePredicate, Token![,]>, 483 pub enum WherePredicate { 526 WherePredicate, 978 impl Parse for WherePredicate { implementation 981 Ok(WherePredicate::Lifetime(PredicateLifetime { in parse() 1008 Ok(WherePredicate::Type(PredicateType { in parse()
|
| H A D | lib.rs | 409 WherePredicate,
|
| /linux/rust/syn/gen/ |
| H A D | clone.rs | 2260 impl Clone for crate::WherePredicate { implementation 2263 crate::WherePredicate::Lifetime(v0) => { in clone() 2264 crate::WherePredicate::Lifetime(v0.clone()) in clone() 2266 crate::WherePredicate::Type(v0) => crate::WherePredicate::Type(v0.clone()), in clone()
|
| H A D | eq.rs | 2292 impl Eq for crate::WherePredicate {} implementation 2295 impl PartialEq for crate::WherePredicate { implementation 2299 crate::WherePredicate::Lifetime(self0), in eq() 2300 crate::WherePredicate::Lifetime(other0), in eq() 2302 (crate::WherePredicate::Type(self0), crate::WherePredicate::Type(other0)) => { in eq()
|
| H A D | fold.rs | 1023 i: crate::WherePredicate, in fold_where_predicate() argument 1024 ) -> crate::WherePredicate { in fold_where_predicate() argument 3883 node: crate::WherePredicate, in fold_where_predicate() argument 3884 ) -> crate::WherePredicate in fold_where_predicate() 3889 crate::WherePredicate::Lifetime(_binding_0) => { in fold_where_predicate() 3890 crate::WherePredicate::Lifetime(f.fold_predicate_lifetime(_binding_0)) in fold_where_predicate() 3892 crate::WherePredicate::Type(_binding_0) => { in fold_where_predicate() 3893 crate::WherePredicate::Type(f.fold_predicate_type(_binding_0)) in fold_where_predicate()
|
| H A D | hash.rs | 2862 impl Hash for crate::WherePredicate { implementation 2868 crate::WherePredicate::Lifetime(v0) => { in hash() 2872 crate::WherePredicate::Type(v0) => { in hash()
|
| H A D | visit_mut.rs | 952 fn visit_where_predicate_mut(&mut self, i: &mut crate::WherePredicate) { in visit_where_predicate_mut() argument 3749 pub fn visit_where_predicate_mut<V>(v: &mut V, node: &mut crate::WherePredicate) in visit_where_predicate_mut() 3754 crate::WherePredicate::Lifetime(_binding_0) => { in visit_where_predicate_mut() 3757 crate::WherePredicate::Type(_binding_0) => { in visit_where_predicate_mut()
|
| H A D | visit.rs | 944 fn visit_where_predicate(&mut self, i: &'ast crate::WherePredicate) { in visit_where_predicate() argument 3931 pub fn visit_where_predicate<'ast, V>(v: &mut V, node: &'ast crate::WherePredicate) in visit_where_predicate() 3936 crate::WherePredicate::Lifetime(_binding_0) => { in visit_where_predicate() 3939 crate::WherePredicate::Type(_binding_0) => { in visit_where_predicate()
|
| H A D | debug.rs | 3224 impl Debug for crate::WherePredicate { implementation 3228 crate::WherePredicate::Lifetime(v0) => { in fmt() 3233 crate::WherePredicate::Type(v0) => { in fmt()
|