Struct syntex_syntax::ast::PathSegment [] [src]

pub struct PathSegment {
    pub identifier: Ident,
    pub span: Span,
    pub parameters: Option<P<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.

Span of the segment identifier.

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. The Option<P<..>> wrapper is purely a size optimization; None is used to represent both Path and Path<>.

Methods

impl PathSegment
[src]

Trait Implementations

impl Clone for PathSegment
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

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

Formats the value using the given formatter.