Struct futures_await_syn::PathSegment [] [src]

pub struct PathSegment {
    pub ident: Ident,
    pub parameters: PathParameters,
}

A segment of a path: an identifier, an optional lifetime, and a set of types.

E.g. std, String or Box<T>

Fields

The identifier portion of this path segment.

Type/lifetime parameters attached to this path. They come in two flavors: Path<A,B,C> and Path(A,B) -> C. Note that this is more than just simple syntactic sugar; the use of parens affects the region binding rules, so we preserve the distinction.

Trait Implementations

impl Synom for PathSegment
[src]

[src]

impl ToTokens for PathSegment
[src]

[src]

Write self to the given Tokens. Read more

[src]

Convert self directly into a Tokens object. Read more

impl Clone for PathSegment
[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 PathSegment where
    T: Into<Ident>, 
[src]

[src]

Performs the conversion.