W3cubDocs

/Rust

Constant std::boxed::HEAP

pub const HEAP: ExchangeHeapSingleton = ExchangeHeapSingleton{_force_singleton: (),}
🔬 This is a nightly-only experimental API. (box_heap #27779)may be renamed; uncertain about custom allocator design

A value that represents the heap. This is the default place that the box keyword allocates into when no place is supplied.

The following two examples are equivalent:

#![feature(box_heap)]

#![feature(box_syntax, placement_in_syntax)]
use std::boxed::HEAP;

fn main() {
    let foo: Box<i32> = in HEAP { 5 };
    let foo = box 5;
}

© 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/boxed/constant.HEAP.html