enumstd.Build.Watch.WaitResult[src]

Fields

timeout
dirty

File system watching triggered on files that were marked as inputs to at least one Step. Relevant steps have been marked dirty.

clean

File system watching triggered but none of the events were relevant to what we are listening to. There is nothing to do.

Source Code

Source code
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,
}