Home
last modified time | relevance | path

Searched refs:subpat (Results 1 – 8 of 8) sorted by relevance

/linux/rust/syn/
H A Dpat.rs117 pub subpat: Option<(Token![@], Box<Pat>)>,
483 subpat: { in pat_ident()
486 let subpat = Pat::parse_single(input)?; in pat_ident() localVariable
487 Some((at_token, Box::new(subpat))) in pat_ident()
594 subpat: None, in field_pat()
828 if let Some((at_token, subpat)) = &self.subpat { in to_tokens()
830 subpat.to_tokens(tokens); in to_tokens()
/linux/rust/syn/gen/
H A Dclone.rs1525 subpat: self.subpat.clone(), in clone()
H A Deq.rs1513 && self.subpat == other.subpat in eq()
H A Dfold.rs2969 subpat: (node.subpat).map(|it| ((it).0, Box::new(f.fold_pat(*(it).1)))), in fold_pat_ident()
H A Dhash.rs1964 self.subpat.hash(state); in hash()
H A Ddebug.rs2209 formatter.field("subpat", &self.subpat); in debug()
H A Dvisit_mut.rs2869 if let Some(it) = &mut node.subpat { in visit_pat_ident_mut()
H A Dvisit.rs3010 if let Some(it) = &node.subpat { in visit_pat_ident()