Enum syntex_syntax::parse::parser::PathParsingMode
[−]
[src]
pub enum PathParsingMode { NoTypesAllowed, LifetimeAndTypesWithoutColons, LifetimeAndTypesWithColons, }
How to parse a path. There are four different kinds of paths, all of which are parsed somewhat differently.
Variants
NoTypesAllowed | A path with no type parameters; e.g. |
LifetimeAndTypesWithoutColons | A path with a lifetime and type parameters, with no double colons
before the type parameters; e.g. |
LifetimeAndTypesWithColons | A path with a lifetime and type parameters with double colons before
the type parameters; e.g. |