Struct rustc_ap_rustc_span::hygiene::ExpnId [−][src]
pub struct ExpnId(_);
Expand description
A unique ID associated with a macro invocation and expansion.
Implementations
impl ExpnId
[src]
impl ExpnId
[src]pub fn fresh(expn_data: Option<ExpnData>) -> Self
[src]
pub fn root() -> 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]
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())
.
pub fn expansion_cause(self) -> Option<Span>
[src]
pub fn expansion_cause(self) -> Option<Span>
[src]Returns span for the macro which originally caused this expansion to happen.
Stops backtracing at include! boundary.
Trait Implementations
impl<CTX: HashStableContext> HashStable<CTX> for ExpnId
[src]
impl<CTX: HashStableContext> HashStable<CTX> for ExpnId
[src]fn hash_stable(&self, ctx: &mut CTX, hasher: &mut StableHasher)
[src]
impl Copy for ExpnId
[src]
impl Eq for ExpnId
[src]
impl StructuralEq for ExpnId
[src]
impl StructuralPartialEq for ExpnId
[src]
Auto Trait Implementations
impl RefUnwindSafe for ExpnId
impl Send for ExpnId
impl Sync for ExpnId
impl Unpin for ExpnId
impl UnwindSafe for ExpnId
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]pub fn borrow_mut(&mut self) -> &mut T
[src]
pub fn borrow_mut(&mut self) -> &mut T
[src]Mutably borrows from an owned value. Read more
impl<Q, K> Equivalent<K> for Q where
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized,
[src]
impl<Q, K> Equivalent<K> for Q where
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized,
[src]pub fn equivalent(&self, key: &K) -> bool
[src]
pub fn equivalent(&self, key: &K) -> bool
[src]Compare self to key
and return true
if they are equal.
impl<T> Instrument for T
[src]
impl<T> Instrument for T
[src]fn instrument(self, span: Span) -> Instrumented<Self>
[src]
fn instrument(self, span: Span) -> Instrumented<Self>
[src]Instruments this type with the provided Span
, returning an
Instrumented
wrapper. Read more
fn in_current_span(self) -> Instrumented<Self>
[src]
fn in_current_span(self) -> Instrumented<Self>
[src]impl<T> Same<T> for T
impl<T> Same<T> for T
type Output = T
type Output = T
Should always be Self
impl<T> ToOwned for T where
T: Clone,
[src]
impl<T> ToOwned for T where
T: Clone,
[src]type Owned = T
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn to_owned(&self) -> T
[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)
[src]
pub fn clone_into(&self, target: &mut T)
[src]🔬 This is a nightly-only experimental API. (toowned_clone_into
)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
pub fn vzip(self) -> V
impl<'a, T> Captures<'a> for T where
T: ?Sized,
[src]
T: ?Sized,