Struct ash::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) -> Self
pub fn pfn_allocation(self, pfn_allocation: PFN_vkAllocationFunction) -> Self
pub fn pfn_reallocation( self, pfn_reallocation: PFN_vkReallocationFunction ) -> Self
pub fn pfn_free(self, pfn_free: PFN_vkFreeFunction) -> Self
pub fn pfn_internal_allocation( self, pfn_internal_allocation: PFN_vkInternalAllocationNotification ) -> Self
pub fn pfn_internal_free( self, pfn_internal_free: PFN_vkInternalFreeNotification ) -> Self
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>
Auto Trait Implementations§
impl<'a> Freeze for AllocationCallbacksBuilder<'a>
impl<'a> RefUnwindSafe for AllocationCallbacksBuilder<'a>
impl<'a> !Send for AllocationCallbacksBuilder<'a>
impl<'a> !Sync for AllocationCallbacksBuilder<'a>
impl<'a> Unpin for AllocationCallbacksBuilder<'a>
impl<'a> UnwindSafe for AllocationCallbacksBuilder<'a>
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