Expand description

Terminal status handling.

Presently provides a Cargo-like visual style. Hopefully in future versions this can be made configurable.

status_ok!: Successful status messages

// Print a Cargo-like justified status to STDOUT
status_ok!("Loaded", "app loaded successfully");

status_err!: Error messages

// Print an error message
status_err!("something bad happened");

status_attr_ok!: Successful attributes

// Print an indented attribute to STDOUT
status_attr_ok!("good", "yep");

status_attr_error!: Error attributes

// Print an error attribute to STDERR
status_attr_err!("error", "yep");

Structs

Status message builder