Struct screen_13::prelude::vk::AllocationCallbacksBuilder
source · pub struct AllocationCallbacksBuilder<'a> { /* private fields */ }Implementations§
source§impl<'a> AllocationCallbacksBuilder<'a>
impl<'a> AllocationCallbacksBuilder<'a>
pub fn user_data(self, user_data: *mut c_void) -> AllocationCallbacksBuilder<'a>
pub fn pfn_allocation( self, pfn_allocation: Option<unsafe extern "system" fn(_: *mut c_void, _: usize, _: usize, _: SystemAllocationScope) -> *mut c_void> ) -> AllocationCallbacksBuilder<'a>
pub fn pfn_reallocation( self, pfn_reallocation: Option<unsafe extern "system" fn(_: *mut c_void, _: *mut c_void, _: usize, _: usize, _: SystemAllocationScope) -> *mut c_void> ) -> AllocationCallbacksBuilder<'a>
pub fn pfn_free( self, pfn_free: Option<unsafe extern "system" fn(_: *mut c_void, _: *mut c_void)> ) -> AllocationCallbacksBuilder<'a>
pub fn pfn_internal_allocation( self, pfn_internal_allocation: Option<unsafe extern "system" fn(_: *mut c_void, _: usize, _: InternalAllocationType, _: SystemAllocationScope)> ) -> AllocationCallbacksBuilder<'a>
pub fn pfn_internal_free( self, pfn_internal_free: Option<unsafe extern "system" fn(_: *mut c_void, _: usize, _: InternalAllocationType, _: SystemAllocationScope)> ) -> AllocationCallbacksBuilder<'a>
sourcepub fn build(self) -> AllocationCallbacks
pub fn build(self) -> AllocationCallbacks
Calling build will discard all the lifetime information. Only call this if
necessary! Builders implement Deref targeting their corresponding Vulkan struct,
so references to builders can be passed directly to Vulkan functions.
Trait Implementations§
source§impl<'a> Deref for AllocationCallbacksBuilder<'a>
impl<'a> Deref for AllocationCallbacksBuilder<'a>
§type Target = AllocationCallbacks
type Target = AllocationCallbacks
The resulting type after dereferencing.