Crate cargo_intraconv
Source - __error
- Internl helper macro to avoid repeating pretty much the same code several
times.
- code_error
- Unwraps the result in the second argument, printing the error and exiting
the current process with the given error code if it is an
Err
. - continue_error
- Unwraps the result in the first argument, printing the error and continuing
the current loop if it is an
Err
. - return_error
- Unwraps the result in the first argument, printing the error and returning
if it is an
Err
.
- run
- Takes an
CliArgs
instance to transform the paths it contains accordingly
with its stored parameters.