pub struct Files { /* private fields */ }
Implementations§
Source§impl Files
impl Files
pub fn file_text(&self, file_id: FileId) -> FileText
pub fn set_file_text( &self, db: &mut dyn SourceDatabase, file_id: FileId, text: &str, )
pub fn set_file_text_with_durability( &self, db: &mut dyn SourceDatabase, file_id: FileId, text: &str, durability: Durability, )
Sourcepub fn source_root(&self, source_root_id: SourceRootId) -> SourceRootInput
pub fn source_root(&self, source_root_id: SourceRootId) -> SourceRootInput
Source root of the file.
pub fn set_source_root_with_durability( &self, db: &mut dyn SourceDatabase, source_root_id: SourceRootId, source_root: Arc<SourceRoot>, durability: Durability, )
pub fn file_source_root(&self, id: FileId) -> FileSourceRootInput
pub fn set_file_source_root_with_durability( &self, db: &mut dyn SourceDatabase, id: FileId, source_root_id: SourceRootId, durability: Durability, )
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Files
impl !RefUnwindSafe for Files
impl Send for Files
impl Sync for Files
impl Unpin for Files
impl !UnwindSafe for Files
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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