-
Notifications
You must be signed in to change notification settings - Fork 13k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Document
handle_alloc_error
feature in Unstable Book
- Loading branch information
1 parent
13471d3
commit 4b6f55a
Showing
1 changed file
with
20 additions
and
0 deletions.
There are no files selected for viewing
20 changes: 20 additions & 0 deletions
20
src/doc/unstable-book/src/language-features/alloc-error-handler.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# `alloc_error_handler` | ||
|
||
The tracking issue for this feature is: [#51540] | ||
|
||
[#51540]: https://github.com/rust-lang/rust/issues/51540 | ||
|
||
------------------------ | ||
|
||
This attribute is mandatory when using the alloc crate without the std crate. It is used when handling out of memory (OOM) allocation error, and is called | ||
by `alloc::alloc::handle_alloc_error` | ||
|
||
``` rust,ignore (partial-example) | ||
#![feature(alloc_error_handler)] | ||
#![no_std] | ||
#[alloc_error_handler] | ||
fn foo(_: core::alloc::Layout) -> ! { | ||
// … | ||
} | ||
``` |