[src]

Struct std::raw::Box

pub struct Box<T> {
    ref_count: uint,
    drop_glue: fn(ptr: *mut u8),
    prev: *mut Box<T>,
    next: *mut Box<T>,
    data: T,
}

The representation of a Rust managed box

Fields

ref_count
drop_glue
prev
next
data