[][src]Struct librojo::fs_watcher::FsWatcher

pub struct FsWatcher { /* fields omitted */ }

Watches for changes on the filesystem and links together the in-memory filesystem and in-memory Roblox tree.

Methods

impl FsWatcher[src]

pub fn start(
    imfs: Arc<Mutex<Imfs>>,
    rbx_session: Option<Arc<Mutex<RbxSession>>>
) -> FsWatcher
[src]

Start a new FS watcher, watching all of the roots currently attached to the given Imfs.

rbx_session is optional to make testing easier. If it isn't None, events will be passed to it after they're given to the Imfs.

pub fn stop_watching_path(&mut self, path: &Path)[src]

Auto Trait Implementations

impl Send for FsWatcher

impl Sync for FsWatcher

Blanket Implementations

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

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

impl<T, U> TryInto 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> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T