We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
allocator_api
1 parent 23ab504 commit 57ab9e7Copy full SHA for 57ab9e7
src/doc/unstable-book/src/library-features/allocator_api.md
@@ -0,0 +1,15 @@
1
+# `allocator_api`
2
+
3
+The tracking issue for this feature is [#32838]
4
5
+[#32838]: https://github.com/rust-lang/rust/issues/32838
6
7
+------------------------
8
9
+Sometimes you want the memory for one collection to use a different
10
+allocator than the memory for another collection. In this case,
11
+replacing the global allocator is not a workable option. Instead,
12
+you need to pass in an instance of an `Alloc` to each collection
13
+for which you want a custom allocator.
14
15
+TBD
0 commit comments