Struct MacroCallId
pub struct MacroCallId(/* private fields */);Implementations§
§impl MacroCallId
impl MacroCallId
pub fn call_node( self, db: &(dyn ExpandDatabase + 'static), ) -> InFileWrapper<HirFileId, SyntaxNode<RustLanguage>>
pub fn expansion_level(self, db: &(dyn ExpandDatabase + 'static)) -> u32
pub fn parent(self, db: &(dyn ExpandDatabase + 'static)) -> HirFileId
pub fn expansion_info(
self,
db: &(dyn ExpandDatabase + 'static),
) -> ExpansionInfo
pub fn expansion_info( self, db: &(dyn ExpandDatabase + 'static), ) -> ExpansionInfo
Return expansion information if it is a macro-expansion file
pub fn kind(self, db: &(dyn ExpandDatabase + 'static)) -> MacroKind
pub fn is_include_macro(self, db: &(dyn ExpandDatabase + 'static)) -> bool
pub fn is_include_like_macro(self, db: &(dyn ExpandDatabase + 'static)) -> bool
pub fn is_env_or_option_env(self, db: &(dyn ExpandDatabase + 'static)) -> bool
pub fn is_eager(self, db: &(dyn ExpandDatabase + 'static)) -> bool
pub fn eager_arg( self, db: &(dyn ExpandDatabase + 'static), ) -> Option<MacroCallId>
pub fn is_derive_attr_pseudo_expansion( self, db: &(dyn ExpandDatabase + 'static), ) -> bool
§impl MacroCallId
impl MacroCallId
pub fn ingredient(zalsa: &Zalsa) -> &IngredientImpl<MacroCallId>
§impl<'db> MacroCallId
impl<'db> MacroCallId
§impl MacroCallId
impl MacroCallId
pub fn default_debug_fmt(
this: MacroCallId,
f: &mut Formatter<'_>,
) -> Result<(), Error>where
MacroCallLoc: for<'db> Debug,
pub fn default_debug_fmt(
this: MacroCallId,
f: &mut Formatter<'_>,
) -> Result<(), Error>where
MacroCallLoc: for<'db> Debug,
Default debug formatting for this struct (may be useful if you define your own Debug impl)
Trait Implementations§
§impl Clone for MacroCallId
impl Clone for MacroCallId
§fn clone(&self) -> MacroCallId
fn clone(&self) -> MacroCallId
Returns a duplicate 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 more§impl Debug for MacroCallId
impl Debug for MacroCallId
§impl From<MacroCallId> for HirFileId
impl From<MacroCallId> for HirFileId
§fn from(file_id: MacroCallId) -> HirFileId
fn from(file_id: MacroCallId) -> HirFileId
Converts to this type from the input type.
§impl From<MacroCallId> for MacroCallId
impl From<MacroCallId> for MacroCallId
§fn from(value: MacroCallId) -> MacroCallId
fn from(value: MacroCallId) -> MacroCallId
Converts to this type from the input type.
§impl Hash for MacroCallId
impl Hash for MacroCallId
§impl Lookup for MacroCallId
impl Lookup for MacroCallId
type Database = dyn ExpandDatabase
type Data = MacroCallLoc
fn lookup( &self, db: &<MacroCallId as Lookup>::Database, ) -> <MacroCallId as Lookup>::Data
§impl PartialEq for MacroCallId
impl PartialEq for MacroCallId
§impl Update for MacroCallId
impl Update for MacroCallId
§unsafe fn maybe_update(
old_pointer: *mut MacroCallId,
new_value: MacroCallId,
) -> bool
unsafe fn maybe_update( old_pointer: *mut MacroCallId, new_value: MacroCallId, ) -> bool
Returns Read more
impl Copy for MacroCallId
impl Eq for MacroCallId
impl Send for MacroCallId
impl StructuralPartialEq for MacroCallId
impl Sync for MacroCallId
Auto Trait Implementations§
impl Freeze for MacroCallId
impl RefUnwindSafe for MacroCallId
impl Unpin for MacroCallId
impl UnwindSafe for MacroCallId
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,
§impl<T, R> CollectAndApply<T, R> for T
impl<T, R> CollectAndApply<T, R> for T
§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<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<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