Struct futures_await_syn::Path [] [src]

pub struct Path {
    pub leading_colon: Option<Colon2>,
    pub segments: Delimited<PathSegment, Colon2>,
}

A "Path" is essentially Rust's notion of a name.

It's represented as a sequence of identifiers, along with a bunch of supporting information.

E.g. std::cmp::PartialEq

Fields

A ::foo path, is relative to the crate root rather than current module (like paths in an import).

The segments in the path: the things separated by ::.

Methods

impl Path
[src]

impl Path
[src]

[src]

Trait Implementations

impl Synom for Path
[src]

[src]

impl ToTokens for Path
[src]

[src]

Write self to the given Tokens. Read more

[src]

Convert self directly into a Tokens object. Read more

impl Clone for Path
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

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

[src]

Performs the conversion.