Searched refs:predicates (Results 1 – 9 of 9) sorted by relevance
| /linux/rust/syn/ |
| H A D | generics.rs | 154 predicates: Punctuated::new(), in make_where_clause() 469 pub predicates: Punctuated<WherePredicate, Token![,]>, 940 predicates: { in parse() 941 let mut predicates = Punctuated::new(); in parse() localVariable 953 predicates.push_value(value); in parse() 958 predicates.push_punct(punct); in parse() 960 predicates in parse() 1383 if !self.predicates.is_empty() { in to_tokens() 1385 self.predicates.to_tokens(tokens); in to_tokens()
|
| /linux/Documentation/rust/ |
| H A D | general-information.rst | 155 For other predicates that Rust's ``cfg`` does not support, e.g. expressions with
|
| /linux/rust/syn/gen/ |
| H A D | clone.rs | 2254 predicates: self.predicates.clone(), in clone()
|
| H A D | eq.rs | 2287 self.predicates == other.predicates in eq()
|
| H A D | fold.rs | 3876 predicates: crate::punctuated::fold(node.predicates, f, F::fold_where_predicate), in fold_where_clause()
|
| H A D | hash.rs | 2857 self.predicates.hash(state); in hash()
|
| H A D | debug.rs | 3218 formatter.field("predicates", &self.predicates); in fmt()
|
| H A D | visit_mut.rs | 3742 for mut el in Punctuated::pairs_mut(&mut node.predicates) { in visit_where_clause_mut()
|
| H A D | visit.rs | 3924 for el in Punctuated::pairs(&node.predicates) { in visit_where_clause()
|