Type Alias InRealFile

Source
pub type InRealFile<T> = InFileWrapper<EditionedFileId, T>;

Aliased Type§

struct InRealFile<T> {
    pub file_id: EditionedFileId,
    pub value: T,
}

Fields§

§file_id: EditionedFileId§value: T

Implementations§

Source§

impl<SN: Borrow<SyntaxNode>> InRealFile<SN>

Source

pub fn file_range(&self) -> FileRange

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>

Trait Implementations

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>