Enum rustc_ap_rustc_span::hygiene::Transparency  [−][src]
pub enum Transparency {
    Transparent,
    SemiTransparent,
    Opaque,
}Expand description
A property of a macro expansion that determines how identifiers produced by that expansion are resolved.
Variants
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.
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.
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
This method returns an ordering between self and other values if one exists. Read more
This method tests less than (for self and other) and is used by the < operator. Read more
This method tests less than or equal to (for self and other) and is used by the <=
operator. Read more
This method tests greater than (for self and other) and is used by the > operator. Read more
Auto Trait Implementations
impl RefUnwindSafe for Transparencyimpl Send for Transparencyimpl Sync for Transparencyimpl Unpin for Transparencyimpl UnwindSafe for TransparencyBlanket Implementations
Mutably borrows from an owned value. Read more
Compare self to key and return true if they are equal.
Instruments this type with the provided Span, returning an
Instrumented wrapper. Read more
type Output = T
type Output = TShould always be Self
pub fn vzip(self) -> V