Struct ash::vk::AllocationCallbacks
source · #[repr(C)]pub struct AllocationCallbacks {
pub p_user_data: *mut c_void,
pub pfn_allocation: PFN_vkAllocationFunction,
pub pfn_reallocation: PFN_vkReallocationFunction,
pub pfn_free: PFN_vkFreeFunction,
pub pfn_internal_allocation: PFN_vkInternalAllocationNotification,
pub pfn_internal_free: PFN_vkInternalFreeNotification,
}
Expand description
Fields§
§p_user_data: *mut c_void
§pfn_allocation: PFN_vkAllocationFunction
§pfn_reallocation: PFN_vkReallocationFunction
§pfn_free: PFN_vkFreeFunction
§pfn_internal_allocation: PFN_vkInternalAllocationNotification
§pfn_internal_free: PFN_vkInternalFreeNotification
Implementations§
source§impl AllocationCallbacks
impl AllocationCallbacks
pub fn builder<'a>() -> AllocationCallbacksBuilder<'a>
Trait Implementations§
source§impl Clone for AllocationCallbacks
impl Clone for AllocationCallbacks
source§fn clone(&self) -> AllocationCallbacks
fn clone(&self) -> AllocationCallbacks
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for AllocationCallbacks
impl Debug for AllocationCallbacks
source§impl Default for AllocationCallbacks
impl Default for AllocationCallbacks
impl Copy for AllocationCallbacks
Auto Trait Implementations§
impl Freeze for AllocationCallbacks
impl RefUnwindSafe for AllocationCallbacks
impl !Send for AllocationCallbacks
impl !Sync for AllocationCallbacks
impl Unpin for AllocationCallbacks
impl UnwindSafe for AllocationCallbacks
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