[][src]Struct ra_vfs::Vfs

pub struct Vfs { /* fields omitted */ }

Methods

impl Vfs[src]

pub fn new(
    roots: Vec<RootEntry>,
    on_task: Box<dyn FnMut(VfsTask) + Send>,
    watch: Watch
) -> (Vfs, Vec<VfsRoot>)
[src]

pub fn root2path(&self, root: VfsRoot) -> PathBuf[src]

pub fn path2file(&self, path: &Path) -> Option<VfsFile>[src]

pub fn file2path(&self, file: VfsFile) -> PathBuf[src]

pub fn file_line_endings(&self, file: VfsFile) -> LineEndings[src]

pub fn n_roots(&self) -> usize[src]

pub fn load(&mut self, path: &Path) -> Option<VfsFile>[src]

pub fn notify_changed(&mut self, path: PathBuf)[src]

pub fn add_file_overlay(&mut self, path: &Path, text: String) -> Option<VfsFile>[src]

pub fn change_file_overlay(&mut self, path: &Path, new_text: String)[src]

pub fn remove_file_overlay(&mut self, path: &Path) -> Option<VfsFile>[src]

pub fn commit_changes(&mut self) -> Vec<VfsChange>[src]

pub fn handle_task(&mut self, task: VfsTask)[src]

Trait Implementations

impl Debug for Vfs[src]

Auto Trait Implementations

impl Send for Vfs

impl Sync for Vfs

impl Unpin for Vfs

impl !UnwindSafe for Vfs

impl !RefUnwindSafe for Vfs

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]