pub enum DidChangeWatchedFiles {}
Expand description
The watched files notification is sent from the client to the server when the client detects changes to files and folders watched by the language client (note although the name suggest that only file events are sent it is about file system events which include folders as well). It is recommended that servers register for these file system events using the registration mechanism. In former implementations clients pushed file events without the server actively asking for it.
Trait Implementations§
source§impl Debug for DidChangeWatchedFiles
impl Debug for DidChangeWatchedFiles
source§impl Notification for DidChangeWatchedFiles
impl Notification for DidChangeWatchedFiles
Auto Trait Implementations§
impl Freeze for DidChangeWatchedFiles
impl RefUnwindSafe for DidChangeWatchedFiles
impl Send for DidChangeWatchedFiles
impl Sync for DidChangeWatchedFiles
impl Unpin for DidChangeWatchedFiles
impl UnwindSafe for DidChangeWatchedFiles
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