pub struct Vfs<U = ()>(/* private fields */);
Implementations§
Source§impl<U> Vfs<U>
impl<U> Vfs<U>
Sourcepub fn file_saved(&self, path: &Path) -> Result<(), Error>
pub fn file_saved(&self, path: &Path) -> Result<(), Error>
Indicate that the current file as known to the VFS has been written to disk.
Sourcepub fn flush_file(&self, path: &Path) -> Result<(), Error>
pub fn flush_file(&self, path: &Path) -> Result<(), Error>
Removes a file from the VFS. Does not check if the file is synced with the disk. Does not check if the file exists.
pub fn file_is_synced(&self, path: &Path) -> Result<bool, Error>
Sourcepub fn on_changes(&self, changes: &[Change]) -> Result<(), Error>
pub fn on_changes(&self, changes: &[Change]) -> Result<(), Error>
Record a set of changes to the VFS.
Sourcepub fn get_cached_files(&self) -> HashMap<PathBuf, String>
pub fn get_cached_files(&self) -> HashMap<PathBuf, String>
Return all files in the VFS.
pub fn get_changes(&self) -> HashMap<PathBuf, String>
Sourcepub fn has_changes(&self) -> bool
pub fn has_changes(&self) -> bool
Returns true if the VFS contains any changed files.
pub fn set_file(&self, path: &Path, text: &str)
pub fn load_file(&self, path: &Path) -> Result<FileContents, Error>
pub fn load_line( &self, path: &Path, line: Row<ZeroIndexed>, ) -> Result<String, Error>
pub fn load_lines( &self, path: &Path, line_start: Row<ZeroIndexed>, line_end: Row<ZeroIndexed>, ) -> Result<String, Error>
pub fn load_span(&self, span: Span<ZeroIndexed>) -> Result<String, Error>
pub fn for_each_line<F>(&self, path: &Path, f: F) -> Result<(), Error>
pub fn write_file(&self, path: &Path) -> Result<(), Error>
pub fn set_user_data(&self, path: &Path, data: Option<U>) -> Result<(), Error>
pub fn with_user_data<F, R>(&self, path: &Path, f: F) -> Result<R, Error>
pub fn ensure_user_data<F>(&self, path: &Path, f: F) -> Result<(), Error>
pub fn clear(&self)
Auto Trait Implementations§
impl<U = ()> !Freeze for Vfs<U>
impl<U> RefUnwindSafe for Vfs<U>
impl<U> Send for Vfs<U>where
U: Send,
impl<U> Sync for Vfs<U>where
U: Send,
impl<U> Unpin for Vfs<U>where
U: Unpin,
impl<U> UnwindSafe for Vfs<U>
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