Struct syntex_syntax::ast::PathSegment
[−]
[src]
pub struct PathSegment {
pub identifier: Ident,
pub parameters: PathParameters,
}A segment of a path: an identifier, an optional lifetime, and a set of types.
Fields
identifier | The identifier portion of this path segment. |
parameters | Type/lifetime parameters attached to this path. They come in
two flavors: |