Struct maskerad_memory_allocators::utils::TypeDescription [] [src]

pub struct TypeDescription {
    pub drop_glue: fn(_: *const i8),
    pub size: usize,
    pub alignment: usize,
}

A Structure holding the function pointer to the drop implementation, the size and the alignment of a given type T.

Fields