pub enum WatchDirectory {
UseFsEvents,
FixedPollingInterval,
DynamicPriorityPolling,
FixedChunkSizePolling,
}Expand description
Specify how directories are watched on systems that lack recursive file-watching functionality. See more: https://www.typescriptlang.org/tsconfig#watchDirectory
Variants§
Trait Implementations§
Source§impl Clone for WatchDirectory
impl Clone for WatchDirectory
Source§fn clone(&self) -> WatchDirectory
fn clone(&self) -> WatchDirectory
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for WatchDirectory
impl Debug for WatchDirectory
Source§impl<'de> Deserialize<'de> for WatchDirectory
impl<'de> Deserialize<'de> for WatchDirectory
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for WatchDirectory
impl Display for WatchDirectory
Source§impl PartialEq for WatchDirectory
impl PartialEq for WatchDirectory
Source§impl Serialize for WatchDirectory
impl Serialize for WatchDirectory
impl Eq for WatchDirectory
impl StructuralPartialEq for WatchDirectory
Auto Trait Implementations§
impl Freeze for WatchDirectory
impl RefUnwindSafe for WatchDirectory
impl Send for WatchDirectory
impl Sync for WatchDirectory
impl Unpin for WatchDirectory
impl UnsafeUnpin for WatchDirectory
impl UnwindSafe for WatchDirectory
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.