🔬 This is a nightly-only experimental API. (
process_exitcode_placeholder
#48711)
This type represents the status code a process can return to its
parent under normal termination.
Numeric values used in this type don't have portable meanings, and
different platforms may mask different amounts of them.
For the platform's canonical successful and unsuccessful codes, see
the SUCCESS
and FAILURE
associated items.
Warning: While various forms of this were discussed in RFC #1937,
it was ultimately cut from that RFC, and thus this type is more subject
to change even than the usual unstable item churn.
🔬 This is a nightly-only experimental API. (
process_exitcode_placeholder
#48711)
The canonical ExitCode for successful termination on this platform.
Note that a ()
-returning main
implicitly results in a successful
termination, so there's no need to return this from main
unless
you're also returning other possible codes.
🔬 This is a nightly-only experimental API. (
process_exitcode_placeholder
#48711)
The canonical ExitCode for unsuccessful termination on this platform.
If you're only returning this and SUCCESS
from main
, consider
instead returning Err(_)
and Ok(())
respectively, which will
return the same codes (but will also eprintln!
the error).
🔬 This is a nightly-only experimental API. (
termination_trait_lib
#43301)
Is called to get the representation of the value as status code. This status code is returned to the operating system. Read more
Formats the value using the given formatter. Read more
Performs copy-assignment from source
. Read more
🔬 This is a nightly-only experimental API. (
try_from
#33417)
The type returned in the event of a conversion error.
🔬 This is a nightly-only experimental API. (
try_from
#33417)
🔬 This is a nightly-only experimental API. (
try_from
#33417)
The type returned in the event of a conversion error.
🔬 This is a nightly-only experimental API. (
try_from
#33417)
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more
🔬 This is a nightly-only experimental API. (get_type_id
#27745)
this method will likely be replaced by an associated static
type Owned = T
Creates owned data from borrowed data, usually by cloning. Read more
🔬 This is a nightly-only experimental API. (toowned_clone_into
#41263)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more