pub struct MacroCallId(/* private fields */);
Implementations§
Source§impl MacroCallId
impl MacroCallId
pub fn call_node(self, db: &dyn ExpandDatabase) -> InFile<SyntaxNode>
pub fn expansion_level(self, db: &dyn ExpandDatabase) -> u32
pub fn parent(self, db: &dyn ExpandDatabase) -> HirFileId
Sourcepub fn expansion_info(self, db: &dyn ExpandDatabase) -> ExpansionInfo
pub fn expansion_info(self, db: &dyn ExpandDatabase) -> ExpansionInfo
Return expansion information if it is a macro-expansion file
pub fn kind(self, db: &dyn ExpandDatabase) -> MacroKind
pub fn is_include_macro(self, db: &dyn ExpandDatabase) -> bool
pub fn is_include_like_macro(self, db: &dyn ExpandDatabase) -> bool
pub fn is_env_or_option_env(self, db: &dyn ExpandDatabase) -> bool
pub fn is_eager(self, db: &dyn ExpandDatabase) -> bool
pub fn eager_arg(self, db: &dyn ExpandDatabase) -> Option<MacroCallId>
pub fn is_derive_attr_pseudo_expansion(self, db: &dyn ExpandDatabase) -> bool
Source§impl MacroCallId
impl MacroCallId
pub fn ingredient<Db>(db: &Db) -> &IngredientImpl<Self>where
Db: ?Sized + Database,
Source§impl<'db> MacroCallId
impl<'db> MacroCallId
pub fn new<Db_, T0: Lookup<MacroCallLoc> + Hash>(db: &'db Db_, loc: T0) -> Selfwhere
Db_: ?Sized + Database,
MacroCallLoc: HashEqLike<T0>,
pub fn loc<Db_>(self, db: &'db Db_) -> MacroCallLocwhere
Db_: ?Sized + Database,
Sourcepub fn default_debug_fmt(this: Self, f: &mut Formatter<'_>) -> Result
pub fn default_debug_fmt(this: Self, f: &mut Formatter<'_>) -> Result
Default debug formatting for this struct (may be useful if you define your own Debug
impl)
Trait Implementations§
Source§impl Clone for MacroCallId
impl Clone for MacroCallId
Source§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 moreSource§impl Configuration for MacroCallId
impl Configuration for MacroCallId
const LOCATION: Location
const DEBUG_NAME: &'static str = "MacroCallId"
const REVISIONS: NonZeroUsize
Source§type Fields<'a> = (MacroCallLoc,)
type Fields<'a> = (MacroCallLoc,)
The fields of the struct being interned.
Source§type Struct<'db> = MacroCallId
type Struct<'db> = MacroCallId
The end user struct
Source§impl Debug for MacroCallId
impl Debug for MacroCallId
Source§impl From<MacroCallId> for HirFileId
impl From<MacroCallId> for HirFileId
Source§fn from(file_id: MacroCallId) -> Self
fn from(file_id: MacroCallId) -> Self
Converts to this type from the input type.
Source§impl From<MacroCallId> for MacroCallId
impl From<MacroCallId> for MacroCallId
Source§impl From<MacroCallId> for MacroCallId
impl From<MacroCallId> for MacroCallId
Source§fn from(value: MacroCallId) -> MacroCallId
fn from(value: MacroCallId) -> MacroCallId
Converts to this type from the input type.
Source§impl Hash for MacroCallId
impl Hash for MacroCallId
Source§impl Lookup for MacroCallId
impl Lookup for MacroCallId
Source§impl PartialEq for MacroCallId
impl PartialEq for MacroCallId
Source§impl SalsaStructInDb for MacroCallId
impl SalsaStructInDb for MacroCallId
Source§impl Update for MacroCallId
impl Update for MacroCallId
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<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