Searched refs:ConstParam (Results 1 – 11 of 11) sorted by relevance
/third_party/rust/crates/syn/src/ |
D | generics.rs | 46 Const(ConstParam), 77 pub struct ConstParam { 250 type Item = &'a ConstParam; 268 type Item = &'a mut ConstParam; 566 params.push_value(GenericParam::Const(ConstParam { in parse() 618 Ok(GenericParam::Const(ConstParam { in parse() 844 impl Parse for ConstParam { implementation 847 Ok(ConstParam { in parse() 1185 impl ToTokens for ConstParam { implementation
|
D | lib.rs | 384 BoundLifetimes, ConstParam, GenericParam, Generics, LifetimeParam, PredicateLifetime,
|
/third_party/rust/crates/syn/tests/ |
D | test_precedence.rs | 514 use syn::{token, ConstParam, Expr, ExprTuple, Pat, Path}; in collect_exprs() 540 fn fold_const_param(&mut self, const_param: ConstParam) -> ConstParam { in collect_exprs() argument
|
/third_party/rust/crates/syn/src/gen/ |
D | fold.rs | 97 fn fold_const_param(&mut self, i: ConstParam) -> ConstParam { in fold_const_param() argument 1110 pub fn fold_const_param<F>(f: &mut F, node: ConstParam) -> ConstParam in fold_const_param() 1114 ConstParam { in fold_const_param()
|
D | clone.rs | 145 impl Clone for ConstParam { implementation 147 ConstParam { in clone()
|
D | eq.rs | 166 impl Eq for ConstParam {} implementation 169 impl PartialEq for ConstParam { implementation
|
D | visit_mut.rs | 97 fn visit_const_param_mut(&mut self, i: &mut ConstParam) { in visit_const_param_mut() argument 1174 pub fn visit_const_param_mut<V>(v: &mut V, node: &mut ConstParam) in visit_const_param_mut()
|
D | visit.rs | 96 fn visit_const_param(&mut self, i: &'ast ConstParam) { in visit_const_param() argument 1173 pub fn visit_const_param<'ast, V>(v: &mut V, node: &'ast ConstParam) in visit_const_param()
|
D | hash.rs | 236 impl Hash for ConstParam { implementation
|
D | debug.rs | 294 impl Debug for ConstParam { implementation
|
/third_party/rust/crates/syn/tests/debug/ |
D | gen.rs | 317 impl Debug for Lite<syn::ConstParam> {
|