Struct syntax::ast::PathSegment[][src]

pub struct PathSegment {
    pub ident: Ident,
    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.

Type/lifetime parameters attached to this path. They come in two flavors: Path<A,B,C> and Path(A,B) -> C. None means that no parameter list is supplied (Path), Some means that parameter list is supplied (Path<X, Y>) but it can be empty (Path<>). P is used as a size optimization for the common case with no parameters.

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

impl Decodable 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. Read more

Auto Trait Implementations

impl !Send for PathSegment

impl !Sync for PathSegment