pub struct FilePositionWrapper<FileKind> {
pub file_id: FileKind,
pub offset: TextSize,
}Fields§
§file_id: FileKind§offset: TextSizeImplementations§
Source§impl FilePositionWrapper<EditionedFileId>
impl FilePositionWrapper<EditionedFileId>
pub fn into_file_id( self, db: &(dyn ExpandDatabase + 'static), ) -> FilePositionWrapper<FileId>
Trait Implementations§
Source§impl<FileKind> Clone for FilePositionWrapper<FileKind>where
FileKind: Clone,
impl<FileKind> Clone for FilePositionWrapper<FileKind>where
FileKind: Clone,
Source§fn clone(&self) -> FilePositionWrapper<FileKind>
fn clone(&self) -> FilePositionWrapper<FileKind>
Returns a duplicate 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 moreSource§impl<FileKind> Debug for FilePositionWrapper<FileKind>where
FileKind: Debug,
impl<FileKind> Debug for FilePositionWrapper<FileKind>where
FileKind: Debug,
Source§impl From<FilePositionWrapper<EditionedFileId>> for FilePositionWrapper<HirFileId>
impl From<FilePositionWrapper<EditionedFileId>> for FilePositionWrapper<HirFileId>
Source§fn from(
value: FilePositionWrapper<EditionedFileId>,
) -> FilePositionWrapper<HirFileId>
fn from( value: FilePositionWrapper<EditionedFileId>, ) -> FilePositionWrapper<HirFileId>
Converts to this type from the input type.
Source§impl<FileKind> Hash for FilePositionWrapper<FileKind>where
FileKind: Hash,
impl<FileKind> Hash for FilePositionWrapper<FileKind>where
FileKind: Hash,
Source§impl<FileKind> PartialEq for FilePositionWrapper<FileKind>where
FileKind: PartialEq,
impl<FileKind> PartialEq for FilePositionWrapper<FileKind>where
FileKind: PartialEq,
Source§fn eq(&self, other: &FilePositionWrapper<FileKind>) -> bool
fn eq(&self, other: &FilePositionWrapper<FileKind>) -> bool
Tests for
self and other values to be equal, and is used by ==.impl<FileKind> Copy for FilePositionWrapper<FileKind>where
FileKind: Copy,
impl<FileKind> Eq for FilePositionWrapper<FileKind>where
FileKind: Eq,
impl<FileKind> StructuralPartialEq for FilePositionWrapper<FileKind>
Auto Trait Implementations§
impl<FileKind> Freeze for FilePositionWrapper<FileKind>where
FileKind: Freeze,
impl<FileKind> RefUnwindSafe for FilePositionWrapper<FileKind>where
FileKind: RefUnwindSafe,
impl<FileKind> Send for FilePositionWrapper<FileKind>where
FileKind: Send,
impl<FileKind> Sync for FilePositionWrapper<FileKind>where
FileKind: Sync,
impl<FileKind> Unpin for FilePositionWrapper<FileKind>where
FileKind: Unpin,
impl<FileKind> UnwindSafe for FilePositionWrapper<FileKind>where
FileKind: UnwindSafe,
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,
Source§impl<T, R> CollectAndApply<T, R> for T
impl<T, R> CollectAndApply<T, R> for T
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§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