pub trait Handle: Debug {
// Required methods
fn spawn(sender: Sender) -> Self
where Self: Sized;
fn set_config(&mut self, config: Config);
fn invalidate(&mut self, path: AbsPathBuf);
fn load_sync(&mut self, path: &AbsPath) -> Option<Vec<u8>>;
}
Expand description
Interface for reading and watching files.
Required Methods§
Sourcefn set_config(&mut self, config: Config)
fn set_config(&mut self, config: Config)
Set this handle’s configuration.
Sourcefn invalidate(&mut self, path: AbsPathBuf)
fn invalidate(&mut self, path: AbsPathBuf)
The file’s content at path
has been modified, and should be reloaded.