Home
last modified time | relevance | path

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

/linux/rust/syn/
H A Dpat.rs620 end: end.map(PatRangeBound::into_expr), in pat_range()
632 end: end.map(PatRangeBound::into_expr), in pat_range_half_open()
696 end: end.map(PatRangeBound::into_expr), in pat_lit_or_range()
704 enum PatRangeBound { enum
710 impl PatRangeBound { implementation
713 PatRangeBound::Const(pat) => Expr::Const(pat), in into_expr()
714 PatRangeBound::Lit(pat) => Expr::Lit(pat), in into_expr()
715 PatRangeBound::Path(pat) => Expr::Path(pat), in into_expr()
721 PatRangeBound::Const(pat) => Pat::Const(pat), in into_pat()
722 PatRangeBound::Lit(pat) => Pat::Lit(pat), in into_pat()
[all …]