Struct languageserver_types::FileSystemWatcher[][src]

pub struct FileSystemWatcher {
    pub glob_pattern: String,
    pub kind: Option<WatchKind>,
}

Fields

The glob pattern to watch

The kind of events of interest. If omitted it defaults to WatchKind.Create | WatchKind.Change | WatchKind.Delete which is 7.

Trait Implementations

impl Debug for FileSystemWatcher
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations