[src]

Module std::owned

Operations on unique pointer types

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:

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