[][src]Enum rustc_ap_rustc_span::hygiene::Transparency

pub enum Transparency {
    Transparent,
    SemiTransparent,
    Opaque,
}

A property of a macro expansion that determines how identifiers produced by that expansion are resolved.

Variants

Transparent

Identifier produced by a transparent expansion is always resolved at call-site. Call-site spans in procedural macros, hygiene opt-out in macro should use this.

SemiTransparent

Identifier produced by a semi-transparent expansion may be resolved either at call-site or at definition-site. If it's a local variable, label or $crate then it's resolved at def-site. Otherwise it's resolved at call-site. macro_rules macros behave like this, built-in macros currently behave like this too, but that's an implementation detail.

Opaque

Identifier produced by an opaque expansion is always resolved at definition-site. Def-site spans in procedural macros, identifiers from macro by default use this.

Trait Implementations

impl Clone for Transparency[src]

impl Copy for Transparency[src]

impl Debug for Transparency[src]

impl Decodable for Transparency[src]

impl Encodable for Transparency[src]

impl Eq for Transparency[src]

impl Hash for Transparency[src]

impl<__CTX> HashStable<__CTX> for Transparency where
    __CTX: HashStableContext
[src]

impl PartialEq<Transparency> for Transparency[src]

impl PartialOrd<Transparency> for Transparency[src]

impl StructuralEq for Transparency[src]

impl StructuralPartialEq for Transparency[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> Decodable for T where
    T: UseSpecializedDecodable
[src]

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

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

impl<T> Erased for T[src]

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

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

impl<E> SpecializationError for E[src]

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.