Expand description
A desugared representation of paths like crate::foo
or <Type as Trait>::bar
.
Macros§
Structs§
- Associated
Type Binding - An associated type binding like in
Iterator<Item = T>
. - Generic
Args - Generic arguments to a path segment (e.g. the
i32
inOption<i32>
). This also includes bindings of associated types, like inIterator<Item = Foo>
. - ModPath
- Normal
Path - Path
Segment - Path
Segments
Enums§
- Generic
Arg - A single generic argument.
- Generic
Args Parentheses - Import
Alias - Path
- Path
Kind
Functions§
- hir_
segment_ to_ ast_ segment - This function finds the AST segment that corresponds to the HIR segment
with index
segment_idx
on the path that is lowered frompath
.