Struct alloc_no_stdlib::CallocBackingStore [] [src]

pub struct CallocBackingStore<'a, T: 'a> {
    pub raw_data: *mut u8,
    pub data: &'a mut [T],
    // some fields omitted
}

Fields

Methods

impl<'a, T: 'a> CallocBackingStore<'a, T>
[src]

Trait Implementations

impl<'a, T: Debug + 'a> Debug for CallocBackingStore<'a, T>
[src]

Formats the value using the given formatter.

impl<'a, T: 'a> Drop for CallocBackingStore<'a, T>
[src]

A method called when the value goes out of scope. Read more