hir_expand::files

Type Alias InFile

Source
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>

Source

pub fn parent_ancestors_with_macros( self, db: &dyn ExpandDatabase, ) -> impl Iterator<Item = InFile<SyntaxNode>> + '_

Source

pub fn ancestors_with_macros( self, db: &dyn ExpandDatabase, ) -> impl Iterator<Item = InFile<SyntaxNode>> + '_

Source

pub fn kind(&self) -> SyntaxKind

Source

pub fn text_range(&self) -> TextRange

Source

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].

Source

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.

Source

pub fn original_syntax_node_rooted( self, db: &dyn ExpandDatabase, ) -> Option<InRealFile<SyntaxNode>>

Source§

impl InFile<&SyntaxNode>

Source

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>

Source

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.

Source

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>

Source§

impl<N: AstNode> InFile<N>

Source§

impl<T> InFile<T>

Source§

impl<FileId: Copy, N: AstNode> InFileWrapper<FileId, &N>

Source

pub fn syntax_ref(&self) -> InFileWrapper<FileId, &SyntaxNode>

Source§

impl<FileId: FileIdToSyntax, N: AstNode> InFileWrapper<FileId, AstPtr<N>>

Source

pub fn to_node(&self, db: &dyn ExpandDatabase) -> N

Source§

impl<FileId: Copy, N: AstNode> InFileWrapper<FileId, N>

Source

pub fn syntax(&self) -> InFileWrapper<FileId, &SyntaxNode>

Source§

impl<FileId: FileIdToSyntax, T> InFileWrapper<FileId, T>

Source

pub fn file_syntax(&self, db: &dyn ExpandDatabase) -> SyntaxNode

Source§

impl<FileKind: Copy, T: Clone> InFileWrapper<FileKind, &T>

Source

pub fn cloned(&self) -> InFileWrapper<FileKind, T>

Source§

impl<FileKind, L, R> InFileWrapper<FileKind, Either<L, R>>

Source

pub fn transpose( self, ) -> Either<InFileWrapper<FileKind, L>, InFileWrapper<FileKind, R>>

Source§

impl<FileKind, T> InFileWrapper<FileKind, Option<T>>

Source

pub fn transpose(self) -> Option<InFileWrapper<FileKind, T>>

Source§

impl<FileKind: Copy, T> InFileWrapper<FileKind, T>

Source

pub fn with_value<U>(&self, value: U) -> InFileWrapper<FileKind, U>

Source

pub fn as_ref(&self) -> InFileWrapper<FileKind, &T>

Source

pub fn borrow<U>(&self) -> InFileWrapper<FileKind, &U>
where T: Borrow<U>,

Source§

impl<FileKind, T> InFileWrapper<FileKind, T>

Source

pub fn new(file_id: FileKind, value: T) -> Self

Source

pub fn map<F: FnOnce(T) -> U, U>(self, f: F) -> InFileWrapper<FileKind, U>

Source§

impl InFileWrapper<HirFileId, ErasedFileAstId>

Source

pub fn to_range(&self, db: &dyn ExpandDatabase) -> TextRange

Source

pub fn to_ptr(&self, db: &dyn ExpandDatabase) -> SyntaxNodePtr

Source§

impl<N: AstIdNode> InFileWrapper<HirFileId, FileAstId<N>>

Source

pub fn to_node(&self, db: &dyn ExpandDatabase) -> N

Source

pub fn to_range(&self, db: &dyn ExpandDatabase) -> TextRange

Source

pub fn to_in_file_node(&self, db: &dyn ExpandDatabase) -> InFile<N>

Source

pub fn to_ptr(&self, db: &dyn ExpandDatabase) -> AstPtr<N>

Trait Implementations§

Source§

impl<T> From<InFileWrapper<EditionedFileId, T>> for InFile<T>

Source§

fn from(_: InRealFile<T>) -> Self

Converts to this type from the input type.
Source§

impl<T> From<InFileWrapper<MacroFileId, T>> for InFile<T>

Source§

fn from(_: InMacroFile<T>) -> Self

Converts to this type from the input type.
Source§

impl<FileKind: Clone, T: Clone> Clone for InFileWrapper<FileKind, T>

Source§

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)

Performs copy-assignment from source. Read more
Source§

impl<FileKind: Debug, T: Debug> Debug for InFileWrapper<FileKind, T>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<FileKind: Hash, T: Hash> Hash for InFileWrapper<FileKind, T>

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl<FileKind: PartialEq, T: PartialEq> PartialEq for InFileWrapper<FileKind, T>

Source§

fn eq(&self, other: &InFileWrapper<FileKind, T>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<FileKind: Copy, T: Copy> Copy for InFileWrapper<FileKind, T>

Source§

impl<FileKind: Eq, T: Eq> Eq for InFileWrapper<FileKind, T>

Source§

impl<FileKind, T> StructuralPartialEq for InFileWrapper<FileKind, T>