Struct hir_expand::proc_macro::CustomProcMacroExpander
source · pub struct CustomProcMacroExpander { /* private fields */ }
Expand description
A custom proc-macro expander handle. This handle together with its crate resolves to a ProcMacro
Implementations§
source§impl CustomProcMacroExpander
impl CustomProcMacroExpander
pub fn new(proc_macro_id: u32) -> Self
sourcepub const fn missing_expander() -> Self
pub const fn missing_expander() -> Self
An expander that always errors due to the actual proc-macro expander missing.
sourcepub const fn disabled() -> Self
pub const fn disabled() -> Self
A dummy expander that always errors. This expander is used for macros that have been disabled.
sourcepub const fn disabled_proc_attr() -> Self
pub const fn disabled_proc_attr() -> Self
A dummy expander that always errors. This expander is used for attribute macros when proc-macro attribute expansion is disabled.
sourcepub const fn is_missing(&self) -> bool
pub const fn is_missing(&self) -> bool
The macro-expander is missing or has yet to be build.
sourcepub const fn is_disabled(&self) -> bool
pub const fn is_disabled(&self) -> bool
The macro is explicitly disabled and cannot be expanded.
sourcepub const fn is_disabled_proc_attr(&self) -> bool
pub const fn is_disabled_proc_attr(&self) -> bool
The macro is explicitly disabled due to proc-macro attribute expansion being disabled.
sourcepub fn as_expand_error(&self, def_crate: CrateId) -> Option<ExpandErrorKind>
pub fn as_expand_error(&self, def_crate: CrateId) -> Option<ExpandErrorKind>
The macro is explicitly disabled due to proc-macro attribute expansion being disabled.
pub fn expand( self, db: &dyn ExpandDatabase, def_crate: CrateId, calling_crate: CrateId, tt: &Subtree, attr_arg: Option<&Subtree>, def_site: Span, call_site: Span, mixed_site: Span, ) -> ExpandResult<Subtree>
Trait Implementations§
source§impl Clone for CustomProcMacroExpander
impl Clone for CustomProcMacroExpander
source§fn clone(&self) -> CustomProcMacroExpander
fn clone(&self) -> CustomProcMacroExpander
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for CustomProcMacroExpander
impl Debug for CustomProcMacroExpander
source§impl Hash for CustomProcMacroExpander
impl Hash for CustomProcMacroExpander
source§impl PartialEq for CustomProcMacroExpander
impl PartialEq for CustomProcMacroExpander
impl Copy for CustomProcMacroExpander
impl Eq for CustomProcMacroExpander
impl StructuralPartialEq for CustomProcMacroExpander
Auto Trait Implementations§
impl Freeze for CustomProcMacroExpander
impl RefUnwindSafe for CustomProcMacroExpander
impl Send for CustomProcMacroExpander
impl Sync for CustomProcMacroExpander
impl Unpin for CustomProcMacroExpander
impl UnwindSafe for CustomProcMacroExpander
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more