W3cubDocs

/Rust

Function std::process::abort

pub fn abort() -> !
🔬 This is a nightly-only experimental API. (process_abort #37838)

Terminates the process in an abnormal fashion.

The function will never return and will immediately terminate the current process in a platform specific "abnormal" manner.

Note that because this function never returns, and that it terminates the process, no destructors on the current stack or any other thread's stack will be run. If a clean shutdown is needed it is recommended to only call this function at a known point where there are no more destructors left to run.

© 2010 The Rust Project Developers
Licensed under the Apache License, Version 2.0 or the MIT license, at your option.
https://doc.rust-lang.org/std/process/fn.abort.html