pub struct SysrootFileMap { /* private fields */ }Expand description
Dumb path→FileId map; good enough for a first cut.
Implementations§
Source§impl SysrootFileMap
impl SysrootFileMap
pub fn new() -> Self
pub fn file_id_for(&mut self, path: AbsPathBuf) -> FileId
Sourcepub fn to_file_set(&self) -> FileSet
pub fn to_file_set(&self) -> FileSet
Build a FileSet containing all sysroot files.
pub fn entries(&self) -> &[(AbsPathBuf, FileId)]
Trait Implementations§
Source§impl Clone for SysrootFileMap
impl Clone for SysrootFileMap
Source§fn clone(&self) -> SysrootFileMap
fn clone(&self) -> SysrootFileMap
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 Default for SysrootFileMap
impl Default for SysrootFileMap
Source§fn default() -> SysrootFileMap
fn default() -> SysrootFileMap
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for SysrootFileMap
impl RefUnwindSafe for SysrootFileMap
impl Send for SysrootFileMap
impl Sync for SysrootFileMap
impl Unpin for SysrootFileMap
impl UnwindSafe for SysrootFileMap
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> Cast for T
impl<T> Cast for T
Source§fn cast<U>(self, interner: <U as HasInterner>::Interner) -> Uwhere
Self: CastTo<U>,
U: HasInterner,
fn cast<U>(self, interner: <U as HasInterner>::Interner) -> Uwhere
Self: CastTo<U>,
U: HasInterner,
Cast a value to type
U using CastTo.Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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