Functionsยง
- recoverable_
spawn - Spawns a new thread to run the provided function
functionin a recoverable manner. If the functionfunctionpanics during execution, the panic will be caught, and the thread will terminate without crashing the entire program. - recoverable_
spawn_ catch - Spawns a recoverable function with an error-handling function in a new thread.
- recoverable_
spawn_ catch_ finally - run_
error_ handle_ function - Executes an error-handling function with a given error message within a panic-safe context.
- run_
function - Executes a recoverable function within a panic-safe context.
- spawn_
error_ to_ string - Converts a panic-captured error value into a string.