[][src]Struct rustc_ap_syntax_pos::hygiene::ExpnId

pub struct ExpnId(_);

A unique ID associated with a macro invocation and expansion.

Methods

impl ExpnId[src]

pub fn fresh(expn_data: Option<ExpnData>) -> Self[src]

pub fn root() -> Self[src]

The ID of the theoretical expansion that generates freshly parsed, unexpanded AST.

pub fn as_u32(self) -> u32[src]

pub fn from_u32(raw: u32) -> ExpnId[src]

pub fn expn_data(self) -> ExpnData[src]

pub fn set_expn_data(self, expn_data: ExpnData)[src]

pub fn is_descendant_of(self, ancestor: ExpnId) -> bool[src]

pub fn outer_expn_is_descendant_of(self, ctxt: SyntaxContext) -> bool[src]

expn_id.outer_expn_is_descendant_of(ctxt) is equivalent to but faster than expn_id.is_descendant_of(ctxt.outer_expn()).

Trait Implementations

impl Eq for ExpnId[src]

impl Clone for ExpnId[src]

impl PartialEq<ExpnId> for ExpnId[src]

impl Copy for ExpnId[src]

impl Hash for ExpnId[src]

impl Debug for ExpnId[src]

impl Encodable for ExpnId[src]

impl Decodable for ExpnId[src]

Auto Trait Implementations

impl Unpin for ExpnId

impl Sync for ExpnId

impl Send for ExpnId

impl UnwindSafe for ExpnId

impl RefUnwindSafe for ExpnId

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

impl<T> Encodable for T where
    T: UseSpecializedEncodable + ?Sized
[src]

impl<T> Decodable for T where
    T: UseSpecializedDecodable
[src]

impl<E> SpecializationError for E[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> Erased for T[src]