Enum HirFileId
pub enum HirFileId {
FileId(EditionedFileId),
MacroFile(MacroCallId),
}Variants§
FileId(EditionedFileId)
MacroFile(MacroCallId)
Implementations§
§impl HirFileId
impl HirFileId
pub fn span_map<'db>( self, db: &'db (dyn SourceDatabase + 'static), ) -> SpanMap<'db>
§impl HirFileId
impl HirFileId
pub fn macro_file(self) -> Option<MacroCallId>
pub fn is_macro(self) -> bool
pub fn file_id(self) -> Option<EditionedFileId>
pub fn syntax_context( self, db: &(dyn SourceDatabase + 'static), edition: Edition, ) -> SyntaxContext
pub fn edition(self, db: &(dyn SourceDatabase + 'static)) -> Edition
pub fn original_file( self, db: &(dyn SourceDatabase + 'static), ) -> EditionedFileId
pub fn original_file_respecting_includes( self, db: &(dyn SourceDatabase + 'static), ) -> EditionedFileId
pub fn original_call_node( self, db: &(dyn SourceDatabase + 'static), ) -> Option<InFileWrapper<EditionedFileId, SyntaxNode<RustLanguage>>>
pub fn call_node( self, db: &(dyn SourceDatabase + 'static), ) -> Option<InFileWrapper<HirFileId, SyntaxNode<RustLanguage>>>
pub fn as_builtin_derive_attr_node( &self, db: &(dyn SourceDatabase + 'static), ) -> Option<InFileWrapper<HirFileId, Attr>>
pub fn parse_or_expand(
self,
db: &(dyn SourceDatabase + 'static),
) -> SyntaxNode<RustLanguage>
pub fn parse_or_expand( self, db: &(dyn SourceDatabase + 'static), ) -> SyntaxNode<RustLanguage>
Main public API – parses a hir file, not caring whether it’s a real file or a macro expansion.
§impl HirFileId
impl HirFileId
pub fn ast_id_map<'db>( self, db: &'db (dyn SourceDatabase + 'static), ) -> &'db AstIdMap
Trait Implementations§
§impl From<EditionedFileId> for HirFileId
impl From<EditionedFileId> for HirFileId
§fn from(file_id: EditionedFileId) -> HirFileId
fn from(file_id: EditionedFileId) -> HirFileId
Converts to this type from the input type.
§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 PartialEq<EditionedFileId> for HirFileId
impl PartialEq<EditionedFileId> for HirFileId
§impl PartialEq<HirFileId> for EditionedFileId
impl PartialEq<HirFileId> for EditionedFileId
impl Copy for HirFileId
impl Eq for HirFileId
impl StructuralPartialEq for HirFileId
Auto Trait Implementations§
impl Freeze for HirFileId
impl RefUnwindSafe for HirFileId
impl Send for HirFileId
impl Sync for HirFileId
impl Unpin for HirFileId
impl UnsafeUnpin for HirFileId
impl UnwindSafe for HirFileId
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
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<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> HashEqLike<T> for T
impl<T> HashEqLike<T> for T
§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