pub trait ITAllocatorProperties_Impl: Sized {
    // Required methods
    fn SetAllocatorProperties(
        &self,
        pallocproperties: *const ALLOCATOR_PROPERTIES
    ) -> Result<()>;
    fn GetAllocatorProperties(&self) -> Result<ALLOCATOR_PROPERTIES>;
    fn SetAllocateBuffers(&self, ballocbuffers: BOOL) -> Result<()>;
    fn GetAllocateBuffers(&self) -> Result<BOOL>;
    fn SetBufferSize(&self, buffersize: u32) -> Result<()>;
    fn GetBufferSize(&self) -> Result<u32>;
}

Required Methods§

fn SetAllocatorProperties( &self, pallocproperties: *const ALLOCATOR_PROPERTIES ) -> Result<()>

fn GetAllocatorProperties(&self) -> Result<ALLOCATOR_PROPERTIES>

fn SetAllocateBuffers(&self, ballocbuffers: BOOL) -> Result<()>

fn GetAllocateBuffers(&self) -> Result<BOOL>

fn SetBufferSize(&self, buffersize: u32) -> Result<()>

fn GetBufferSize(&self) -> Result<u32>

Object Safety§

This trait is not object safe.

Implementors§