Errors
Result
Result - The
result of an operation that can fail: either success (Ok)
holding the produced value, or failure (Err) holding the
error.
Members: Ok, Err
unwrap - Returns
the success value, aborting with the error if the result is
Err.
print - Prints the
given result.
error
abortWrapper -
Prints a stack trace and aborts.
abort - Aborts the
program, printing the given values to stderr.
todo - Aborts the
program, marking the code as not implemented yet.