alloc::boxed::HEAPExperimental [-]  [+] [src]

pub static HEAP: () = ();

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

The following two examples are equivalent:

use std::boxed::HEAP;

let foo = box(HEAP) Bar::new(2);
let foo = box Bar::new(2);