#[repr(C)]pub struct hkContainerHeapAllocator { /* private fields */ }
Expand description
C++ classes without members.
Note: Inheritance of this when reproducing class inheritance in Rust types will result in an undersized class due to EBO (Empty Base Optiomization).
Do not use this when inheriting.
Implementations§
Source§impl hkContainerHeapAllocator
impl hkContainerHeapAllocator
Sourcepub fn get_singleton() -> Option<&'static Allocator>
pub fn get_singleton() -> Option<&'static Allocator>
Gets the singleton instance of Allocator
.
Sourcepub fn get_singleton_mut() -> Option<&'static mut Allocator>
pub fn get_singleton_mut() -> Option<&'static mut Allocator>
Gets the mutable singleton instance of Allocator
.
Auto Trait Implementations§
impl Freeze for hkContainerHeapAllocator
impl RefUnwindSafe for hkContainerHeapAllocator
impl Send for hkContainerHeapAllocator
impl Sync for hkContainerHeapAllocator
impl Unpin for hkContainerHeapAllocator
impl UnwindSafe for hkContainerHeapAllocator
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more