enum Status [src]

Fields

workingIndicates the application is progressing towards completion of a task. Unless the application is interactive, this is the only status the program will ever have!
successThe application has completed an operation, and is now waiting for user input rather than calling exit(0).
failureThe application encountered an error, and is now waiting for user input rather than calling exit(1).
failure_workingThe application encountered at least one error, but is still working on more tasks.

Source

pub const Status = enum { /// Indicates the application is progressing towards completion of a task. /// Unless the application is interactive, this is the only status the /// program will ever have! working, /// The application has completed an operation, and is now waiting for user /// input rather than calling exit(0). success, /// The application encountered an error, and is now waiting for user input /// rather than calling exit(1). failure, /// The application encountered at least one error, but is still working on /// more tasks. failure_working, }