/external/rust/crates/syn-mid/src/ |
D | func.rs | 7 use super::PatType; 55 Typed(PatType), 77 use super::{Block, FnArg, ItemFn, PatType, Receiver, Signature}; 89 if let FnArg::Typed(PatType { ty, .. }) = input { in parse() 177 fn fn_arg_typed(input: ParseStream<'_>) -> Result<PatType> { in fn_arg_typed() argument 178 Ok(PatType { in fn_arg_typed()
|
D | pat.rs | 32 Type(PatType), 101 pub struct PatType { 307 FieldPat, PatIdent, PatPath, PatReference, PatStruct, PatTuple, PatTupleStruct, PatType, 346 impl ToTokens for PatType { implementation
|
D | lib.rs | 56 PatType, PatWild,
|
/external/rust/crates/no-panic/src/ |
D | lib.rs | 127 use syn::{parse_macro_input, parse_quote, Attribute, FnArg, Ident, ItemFn, PatType, ReturnType}; 141 FnArg::Typed(PatType { pat, .. }) => { in no_panic()
|
/external/rust/crates/syn/src/ |
D | pat.rs | 67 Type(PatType), 279 pub struct PatType { 819 impl ToTokens for PatType { implementation
|
D | stmt.rs | 231 pat = Pat::Type(PatType { in stmt_local()
|
D | lib.rs | 426 PatRest, PatSlice, PatStruct, PatTuple, PatTupleStruct, PatType, PatWild,
|
D | item.rs | 925 FnArg::Typed(PatType { pat, .. }) => { in receiver() 951 Typed(PatType), 1599 FnArg::Typed(PatType { in parse_fn_args() 1641 fn fn_arg_typed(input: ParseStream) -> Result<PatType> { in fn_arg_typed() argument 1647 return Ok(PatType { in fn_arg_typed() 1658 Ok(PatType { in fn_arg_typed()
|
D | expr.rs | 2445 Ok(Pat::Type(PatType { in closure_arg()
|
/external/rust/crates/syn/src/gen/ |
D | fold.rs | 561 fn fold_pat_type(&mut self, i: PatType) -> PatType { in fold_pat_type() argument 2554 pub fn fold_pat_type<F>(f: &mut F, node: PatType) -> PatType in fold_pat_type() 2558 PatType { in fold_pat_type()
|
D | clone.rs | 1629 impl Clone for PatType { implementation 1631 PatType { in clone()
|
D | eq.rs | 1636 impl Eq for PatType {} implementation 1639 impl PartialEq for PatType { implementation
|
D | visit_mut.rs | 561 fn visit_pat_type_mut(&mut self, i: &mut PatType) { in visit_pat_type_mut() argument 2993 pub fn visit_pat_type_mut<V>(v: &mut V, node: &mut PatType) in visit_pat_type_mut()
|
D | visit.rs | 557 fn visit_pat_type(&mut self, i: &'ast PatType) { in visit_pat_type() argument 2987 pub fn visit_pat_type<'ast, V>(v: &mut V, node: &'ast PatType) in visit_pat_type()
|
D | hash.rs | 2082 impl Hash for PatType { implementation
|
D | debug.rs | 2243 impl Debug for PatType { implementation
|
/external/rust/crates/syn/tests/debug/ |
D | gen.rs | 4155 impl Debug for Lite<syn::PatType> {
|