Struct core::raw::Box[src]

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

The representation of a Rust managed box

Fields

ref_count
drop_glue
prev
next
data