[][src]Struct winapi::um::objidlbase::IMallocVtbl

#[repr(C)]
pub struct IMallocVtbl {
    pub parent: IUnknownVtbl,
    pub Alloc: unsafe extern "system" fn(This: *mut IMalloc, cb: SIZE_T) -> *mut c_void,
    pub Realloc: unsafe extern "system" fn(This: *mut IMalloc, pv: *mut c_void, cb: SIZE_T) -> *mut c_void,
    pub Free: unsafe extern "system" fn(This: *mut IMalloc, pv: *mut c_void),
    pub GetSize: unsafe extern "system" fn(This: *mut IMalloc, pv: *mut c_void) -> SIZE_T,
    pub DidAlloc: unsafe extern "system" fn(This: *mut IMalloc, pv: *mut c_void) -> c_int,
    pub HeapMinimize: unsafe extern "system" fn(This: *mut IMalloc),
}

Fields

parent: IUnknownVtblAlloc: unsafe extern "system" fn(This: *mut IMalloc, cb: SIZE_T) -> *mut c_voidRealloc: unsafe extern "system" fn(This: *mut IMalloc, pv: *mut c_void, cb: SIZE_T) -> *mut c_voidFree: unsafe extern "system" fn(This: *mut IMalloc, pv: *mut c_void)GetSize: unsafe extern "system" fn(This: *mut IMalloc, pv: *mut c_void) -> SIZE_TDidAlloc: unsafe extern "system" fn(This: *mut IMalloc, pv: *mut c_void) -> c_intHeapMinimize: unsafe extern "system" fn(This: *mut IMalloc)

Auto Trait Implementations

Blanket Implementations

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]