pub type InFile<T> = InFileWrapper<HirFileId, T>;
Aliased Type§
struct InFile<T> {
pub file_id: HirFileId,
pub value: T,
}
Fields§
§file_id: HirFileId
§value: T
Implementations§
Source§impl<SN: Borrow<SyntaxNode>> InFile<SN>
impl<SN: Borrow<SyntaxNode>> InFile<SN>
pub fn parent_ancestors_with_macros( self, db: &dyn ExpandDatabase, ) -> impl Iterator<Item = InFile<SyntaxNode>> + '_
pub fn ancestors_with_macros( self, db: &dyn ExpandDatabase, ) -> impl Iterator<Item = InFile<SyntaxNode>> + '_
pub fn kind(&self) -> SyntaxKind
pub fn text_range(&self) -> TextRange
Sourcepub fn original_file_range_rooted(self, db: &dyn ExpandDatabase) -> FileRange
pub fn original_file_range_rooted(self, db: &dyn ExpandDatabase) -> FileRange
Falls back to the macro call range if the node cannot be mapped up fully.
For attributes and derives, this will point back to the attribute only.
For the entire item use [InFile::original_file_range_full
].
Sourcepub fn original_file_range_with_macro_call_body(
self,
db: &dyn ExpandDatabase,
) -> FileRange
pub fn original_file_range_with_macro_call_body( self, db: &dyn ExpandDatabase, ) -> FileRange
Falls back to the macro call range if the node cannot be mapped up fully.
pub fn original_syntax_node_rooted( self, db: &dyn ExpandDatabase, ) -> Option<InRealFile<SyntaxNode>>
Source§impl InFile<&SyntaxNode>
impl InFile<&SyntaxNode>
Sourcepub fn original_file_range_opt(
self,
db: &dyn ExpandDatabase,
) -> Option<(FileRange, SyntaxContext)>
pub fn original_file_range_opt( self, db: &dyn ExpandDatabase, ) -> Option<(FileRange, SyntaxContext)>
Attempts to map the syntax node back up its macro calls.
Source§impl InFile<SyntaxToken>
impl InFile<SyntaxToken>
Sourcepub fn original_file_range(self, db: &dyn ExpandDatabase) -> FileRange
pub fn original_file_range(self, db: &dyn ExpandDatabase) -> FileRange
Falls back to the macro call range if the node cannot be mapped up fully.
Sourcepub fn original_file_range_opt(
self,
db: &dyn ExpandDatabase,
) -> Option<FileRange>
pub fn original_file_range_opt( self, db: &dyn ExpandDatabase, ) -> Option<FileRange>
Attempts to map the syntax node back up its macro calls.
Source§impl InFile<TextRange>
impl InFile<TextRange>
pub fn original_node_file_range( self, db: &dyn ExpandDatabase, ) -> (FileRange, SyntaxContext)
pub fn original_node_file_range_rooted( self, db: &dyn ExpandDatabase, ) -> FileRange
pub fn original_node_file_range_with_macro_call_body( self, db: &dyn ExpandDatabase, ) -> FileRange
pub fn original_node_file_range_opt( self, db: &dyn ExpandDatabase, ) -> Option<(FileRange, SyntaxContext)>
Source§impl<N: AstNode> InFile<N>
impl<N: AstNode> InFile<N>
pub fn original_ast_node_rooted( self, db: &dyn ExpandDatabase, ) -> Option<InRealFile<N>>
Source§impl<T> InFile<T>
impl<T> InFile<T>
pub fn into_real_file(self) -> Result<InRealFile<T>, InFile<T>>
Source§impl<FileId: Copy, N: AstNode> InFileWrapper<FileId, &N>
impl<FileId: Copy, N: AstNode> InFileWrapper<FileId, &N>
pub fn syntax_ref(&self) -> InFileWrapper<FileId, &SyntaxNode>
Source§impl<FileId: FileIdToSyntax, N: AstNode> InFileWrapper<FileId, AstPtr<N>>
impl<FileId: FileIdToSyntax, N: AstNode> InFileWrapper<FileId, AstPtr<N>>
pub fn to_node(&self, db: &dyn ExpandDatabase) -> N
Source§impl<FileId: Copy, N: AstNode> InFileWrapper<FileId, N>
impl<FileId: Copy, N: AstNode> InFileWrapper<FileId, N>
pub fn syntax(&self) -> InFileWrapper<FileId, &SyntaxNode>
Source§impl<FileId: FileIdToSyntax, T> InFileWrapper<FileId, T>
impl<FileId: FileIdToSyntax, T> InFileWrapper<FileId, T>
pub fn file_syntax(&self, db: &dyn ExpandDatabase) -> SyntaxNode
Source§impl<FileKind: Copy, T: Clone> InFileWrapper<FileKind, &T>
impl<FileKind: Copy, T: Clone> InFileWrapper<FileKind, &T>
pub fn cloned(&self) -> InFileWrapper<FileKind, T>
Source§impl<FileKind, L, R> InFileWrapper<FileKind, Either<L, R>>
impl<FileKind, L, R> InFileWrapper<FileKind, Either<L, R>>
pub fn transpose( self, ) -> Either<InFileWrapper<FileKind, L>, InFileWrapper<FileKind, R>>
Source§impl<FileKind, T> InFileWrapper<FileKind, Option<T>>
impl<FileKind, T> InFileWrapper<FileKind, Option<T>>
pub fn transpose(self) -> Option<InFileWrapper<FileKind, T>>
Source§impl<FileKind: Copy, T> InFileWrapper<FileKind, T>
impl<FileKind: Copy, T> InFileWrapper<FileKind, T>
pub fn with_value<U>(&self, value: U) -> InFileWrapper<FileKind, U>
pub fn as_ref(&self) -> InFileWrapper<FileKind, &T>
pub fn borrow<U>(&self) -> InFileWrapper<FileKind, &U>where
T: Borrow<U>,
Source§impl<FileKind, T> InFileWrapper<FileKind, T>
impl<FileKind, T> InFileWrapper<FileKind, T>
Source§impl InFileWrapper<HirFileId, ErasedFileAstId>
impl InFileWrapper<HirFileId, ErasedFileAstId>
pub fn to_range(&self, db: &dyn ExpandDatabase) -> TextRange
pub fn to_ptr(&self, db: &dyn ExpandDatabase) -> SyntaxNodePtr
Source§impl<N: AstIdNode> InFileWrapper<HirFileId, FileAstId<N>>
impl<N: AstIdNode> InFileWrapper<HirFileId, FileAstId<N>>
pub fn to_node(&self, db: &dyn ExpandDatabase) -> N
pub fn to_range(&self, db: &dyn ExpandDatabase) -> TextRange
pub fn to_in_file_node(&self, db: &dyn ExpandDatabase) -> InFile<N>
pub fn to_ptr(&self, db: &dyn ExpandDatabase) -> AstPtr<N>
Trait Implementations§
Source§impl<T> From<InFileWrapper<EditionedFileId, T>> for InFile<T>
impl<T> From<InFileWrapper<EditionedFileId, T>> for InFile<T>
Source§fn from(_: InRealFile<T>) -> Self
fn from(_: InRealFile<T>) -> Self
Converts to this type from the input type.
Source§impl<T> From<InFileWrapper<MacroFileId, T>> for InFile<T>
impl<T> From<InFileWrapper<MacroFileId, T>> for InFile<T>
Source§fn from(_: InMacroFile<T>) -> Self
fn from(_: InMacroFile<T>) -> Self
Converts to this type from the input type.
Source§impl<FileKind: Clone, T: Clone> Clone for InFileWrapper<FileKind, T>
impl<FileKind: Clone, T: Clone> Clone for InFileWrapper<FileKind, T>
Source§fn clone(&self) -> InFileWrapper<FileKind, T>
fn clone(&self) -> InFileWrapper<FileKind, T>
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 more