enum WaitResult [src]
Fields
timeout
dirtyFile system watching triggered on files that were marked as inputs to at least one Step.
Relevant steps have been marked dirty.
cleanFile system watching triggered but none of the events were relevant to
what we are listening to. There is nothing to do.
Source
pub const WaitResult = enum {
timeout,
/// File system watching triggered on files that were marked as inputs to at least one Step.
/// Relevant steps have been marked dirty.
dirty,
/// File system watching triggered but none of the events were relevant to
/// what we are listening to. There is nothing to do.
clean,
}