Struct 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 ToTokens for PathSegment
[src]

Write self to the given Tokens. Read more

impl Debug for PathSegment
[src]

Formats the value using the given formatter.

impl Clone for PathSegment
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Eq for PathSegment
[src]

impl PartialEq for PathSegment
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Hash for PathSegment
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

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

Performs the conversion.