Type Alias InMacroFile

pub type InMacroFile<T> = InFileWrapper<MacroFileId, T>;

Aliased Type§

struct InMacroFile<T> {
    pub file_id: MacroFileId,
    pub value: T,
}

Fields§

§file_id: MacroFileId§value: T

Implementations

§

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

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

§

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

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

§

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

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

§

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

pub fn file_syntax( &self, db: &(dyn ExpandDatabase + 'static), ) -> SyntaxNode<RustLanguage>

§

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

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

§

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

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

§

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

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

§

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

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

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

§

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

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

§

impl InFileWrapper<MacroFileId, SyntaxToken<RustLanguage>>

pub fn upmap_once( self, db: &(dyn ExpandDatabase + 'static), ) -> InFileWrapper<HirFileId, SmallVec<[TextRange; 1]>>

§

impl InFileWrapper<MacroFileId, TextSize>

pub fn original_file_range( self, db: &(dyn ExpandDatabase + 'static), ) -> (FileRangeWrapper<EditionedFileId>, SyntaxContext)

Trait Implementations

§

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

§

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
§

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

§

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

Formats the value using the given formatter. Read more
§

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

§

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

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
§

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

§

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

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

§

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

§

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