pub trait IMemAllocatorCallbackTemp_Impl: Sized + IMemAllocator_Impl {
    // Required methods
    fn SetNotify(
        &self,
        pnotify: Option<&IMemAllocatorNotifyCallbackTemp>
    ) -> Result<()>;
    fn GetFreeCount(&self) -> Result<i32>;
}

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§