Macro progress

Source
macro_rules! progress {
    () => { ... };
    ($name:expr) => { ... };
}
Expand description

Equivalent of the COZ_PROGRESS and COZ_PROGRESS_NAMED macros

This can be executed as:

coz::progress!();

or …

coz::progress!("my unique name");