Lines Matching refs:Path
6 use crate::path::{Path, QSelf};
54 Path(PatPath),
177 pub path: Path,
200 pub path: Path,
256 use crate::path::{self, Path, QSelf};
450 Ok(Pat::Path(ExprPath { in pat_path_or_macro_or_struct_or_range()
498 path: Path, in pat_tuple_struct() argument
523 fn pat_struct(input: ParseStream, qself: Option<QSelf>, path: Path) -> Result<PatStruct> { in pat_struct()
606 fn pat_range(input: ParseStream, qself: Option<QSelf>, path: Path) -> Result<Pat> { in pat_range()
614 start: Some(Box::new(Expr::Path(ExprPath { in pat_range()
707 Path(ExprPath), enumerator
715 PatRangeBound::Path(pat) => Expr::Path(pat), in into_expr()
723 PatRangeBound::Path(pat) => Pat::Path(pat), in into_pat()
751 PatRangeBound::Path(input.parse()?) in pat_range_bound()