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

pub struct PathSegment {
    pub identifier: 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. 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 Encodable for PathSegment
[src]

Serialize a value using an Encoder.

impl Decodable for PathSegment
[src]

Deserialize a value using a Decoder.

impl Hash for PathSegment
[src]

Feeds this value into the state given, updating the hasher as necessary.

Feeds a slice of this type into the state provided.

impl Debug for PathSegment
[src]

Formats the value using the given formatter.

impl From<Ident> for PathSegment
[src]

Performs the conversion.