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

Methods

impl PathSegment
[src]

Trait Implementations

impl ToTokens for PathSegment
[src]

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 !=.