[][src]Struct rustc_ap_rustc_ast::ast::PathSegment

pub struct PathSegment {
    pub ident: Ident,
    pub id: NodeId,
    pub args: Option<P<GenericArgs>>,
}

A segment of a path: an identifier, an optional lifetime, and a set of types.

E.g., std, String or Box<T>.

Fields

ident: Ident

The identifier portion of this path segment.

id: NodeIdargs: Option<P<GenericArgs>>

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.

Implementations

impl PathSegment[src]

pub fn from_ident(ident: Ident) -> Self[src]

pub fn path_root(span: Span) -> Self[src]

Trait Implementations

impl Clone for PathSegment[src]

impl Debug for PathSegment[src]

impl<__D: Decoder> Decodable<__D> for PathSegment[src]

impl<__E: Encoder> Encodable<__E> for PathSegment[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<'a, T> Captures<'a> for T where
    T: ?Sized
[src]

impl<T> Erased for T[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,