[][src]Enum syntex_syntax2::parse::parser::PathStyle

pub enum PathStyle {
    Mod,
    Type,
    Expr,
}

How to parse a path. There are three different kinds of paths, all of which are parsed somewhat differently.

Variants

Mod

A path with no type parameters, e.g. foo::bar::Baz, used in imports or visibilities.

Type

A path with a lifetime and type parameters, with no double colons before the type parameters; e.g. foo::bar<'a>::Baz<T>, used in types. Paths using this style can be passed into macros expecting path nonterminals.

Expr

A path with a lifetime and type parameters with double colons before the type parameters; e.g. foo::bar::<'a>::Baz::<T>, used in expressions or patterns.

Trait Implementations

impl PartialEq<PathStyle> for PathStyle[src]

#[must_use] fn ne(&self, other: &Rhs) -> bool1.0.0[src]

This method tests for !=.

impl Copy for PathStyle[src]

impl Clone for PathStyle[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]