#[repr(transparent)]pub struct AllocationCallbacksBuilder<'a> { /* private fields */ }Implementations
sourceimpl<'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
sourceimpl<'a> Deref for AllocationCallbacksBuilder<'a>
impl<'a> Deref for AllocationCallbacksBuilder<'a>
type Target = AllocationCallbacks
type Target = AllocationCallbacks
The resulting type after dereferencing.
sourcefn deref(&self) -> &<AllocationCallbacksBuilder<'a> as Deref>::Target
fn deref(&self) -> &<AllocationCallbacksBuilder<'a> as Deref>::Target
Dereferences the value.
sourceimpl<'a> DerefMut for AllocationCallbacksBuilder<'a>
impl<'a> DerefMut for AllocationCallbacksBuilder<'a>
sourcefn deref_mut(
&mut self
) -> &mut <AllocationCallbacksBuilder<'a> as Deref>::Target
fn deref_mut(
&mut self
) -> &mut <AllocationCallbacksBuilder<'a> as Deref>::Target
Mutably dereferences the value.
Auto Trait Implementations
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
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more