Enum syntax::parse::parser::PathParsingMode[src]
pub enum PathParsingMode {
NoTypesAllowed,
LifetimeAndTypesWithoutColons,
LifetimeAndTypesWithColons,
LifetimeAndTypesAndBounds,
}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. |
LifetimeAndTypesAndBounds | A path with a lifetime and type parameters with bounds before the last
set of type parameters only; e.g. |