pub struct Alias<'a> {
    pub span: Span,
    pub id: Option<Id<'a>>,
    pub name: Option<NameAnnotation<'a>>,
    pub target: AliasTarget<'a>,
}
Expand description

An alias to a component item.

Fields

span: Span

Where this alias was defined.

id: Option<Id<'a>>

An identifier that this alias is resolved with (optionally) for name resolution.

name: Option<NameAnnotation<'a>>

An optional name for this alias stored in the custom name section.

target: AliasTarget<'a>

The target of this alias.

Implementations

Parses only an outer type alias.

Trait Implementations

Formats the value using the given formatter. Read more

Performs the conversion.

Performs the conversion.

Performs the conversion.

Performs the conversion.

Attempts to parse Self from parser, returning an error if it could not be parsed. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.