pub struct VulkanVersion10 { /* private fields */ }Expand description
struct for VK_VERSION_1_0
Implementations§
Source§impl VulkanVersion10
impl VulkanVersion10
pub fn new( instance: *const VkInstance_T, get_instance_proc_address: impl FnMut(*const VkInstance_T, &'static str) -> *const c_void, ) -> VulkanVersion10
Trait Implementations§
Source§impl Clone for VulkanVersion10
impl Clone for VulkanVersion10
Source§fn clone(&self) -> VulkanVersion10
fn clone(&self) -> VulkanVersion10
Returns a duplicate 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 VulkanVersion10
impl Debug for VulkanVersion10
Source§impl Default for VulkanVersion10
impl Default for VulkanVersion10
Source§fn default() -> VulkanVersion10
fn default() -> VulkanVersion10
Returns the “default value” for a type. Read more
Source§impl VK_VERSION_1_0 for VulkanVersion10
impl VK_VERSION_1_0 for VulkanVersion10
Source§fn vkCreateInstance(
&self,
pCreateInfo: *const VkInstanceCreateInfo,
pAllocator: *const VkAllocationCallbacks,
pInstance: *mut *const VkInstance_T,
) -> Result<(), VkError>
fn vkCreateInstance( &self, pCreateInfo: *const VkInstanceCreateInfo, pAllocator: *const VkAllocationCallbacks, pInstance: *mut *const VkInstance_T, ) -> Result<(), VkError>
Source§fn vkDestroyInstance(
&self,
instance: *const VkInstance_T,
pAllocator: *const VkAllocationCallbacks,
) -> Result<(), VkError>
fn vkDestroyInstance( &self, instance: *const VkInstance_T, pAllocator: *const VkAllocationCallbacks, ) -> Result<(), VkError>
Source§fn vkEnumeratePhysicalDevices(
&self,
instance: *const VkInstance_T,
pPhysicalDeviceCount: *mut u32,
pPhysicalDevices: *mut *const VkPhysicalDevice_T,
) -> Result<(), VkError>
fn vkEnumeratePhysicalDevices( &self, instance: *const VkInstance_T, pPhysicalDeviceCount: *mut u32, pPhysicalDevices: *mut *const VkPhysicalDevice_T, ) -> Result<(), VkError>
Source§fn vkGetPhysicalDeviceFeatures(
&self,
physicalDevice: *const VkPhysicalDevice_T,
pFeatures: *mut VkPhysicalDeviceFeatures,
) -> Result<(), VkError>
fn vkGetPhysicalDeviceFeatures( &self, physicalDevice: *const VkPhysicalDevice_T, pFeatures: *mut VkPhysicalDeviceFeatures, ) -> Result<(), VkError>
Source§fn vkGetPhysicalDeviceFormatProperties(
&self,
physicalDevice: *const VkPhysicalDevice_T,
format: VkFormat,
pFormatProperties: *mut VkFormatProperties,
) -> Result<(), VkError>
fn vkGetPhysicalDeviceFormatProperties( &self, physicalDevice: *const VkPhysicalDevice_T, format: VkFormat, pFormatProperties: *mut VkFormatProperties, ) -> Result<(), VkError>
Source§fn vkGetPhysicalDeviceImageFormatProperties(
&self,
physicalDevice: *const VkPhysicalDevice_T,
format: VkFormat,
type_: VkImageType,
tiling: VkImageTiling,
usage: u32,
flags: u32,
pImageFormatProperties: *mut VkImageFormatProperties,
) -> Result<(), VkError>
fn vkGetPhysicalDeviceImageFormatProperties( &self, physicalDevice: *const VkPhysicalDevice_T, format: VkFormat, type_: VkImageType, tiling: VkImageTiling, usage: u32, flags: u32, pImageFormatProperties: *mut VkImageFormatProperties, ) -> Result<(), VkError>
Source§fn vkGetPhysicalDeviceProperties(
&self,
physicalDevice: *const VkPhysicalDevice_T,
pProperties: *mut VkPhysicalDeviceProperties,
) -> Result<(), VkError>
fn vkGetPhysicalDeviceProperties( &self, physicalDevice: *const VkPhysicalDevice_T, pProperties: *mut VkPhysicalDeviceProperties, ) -> Result<(), VkError>
Source§fn vkGetPhysicalDeviceQueueFamilyProperties(
&self,
physicalDevice: *const VkPhysicalDevice_T,
pQueueFamilyPropertyCount: *mut u32,
pQueueFamilyProperties: *mut VkQueueFamilyProperties,
) -> Result<(), VkError>
fn vkGetPhysicalDeviceQueueFamilyProperties( &self, physicalDevice: *const VkPhysicalDevice_T, pQueueFamilyPropertyCount: *mut u32, pQueueFamilyProperties: *mut VkQueueFamilyProperties, ) -> Result<(), VkError>
Source§fn vkGetPhysicalDeviceMemoryProperties(
&self,
physicalDevice: *const VkPhysicalDevice_T,
pMemoryProperties: *mut VkPhysicalDeviceMemoryProperties,
) -> Result<(), VkError>
fn vkGetPhysicalDeviceMemoryProperties( &self, physicalDevice: *const VkPhysicalDevice_T, pMemoryProperties: *mut VkPhysicalDeviceMemoryProperties, ) -> Result<(), VkError>
Source§fn vkGetInstanceProcAddr(
&self,
instance: *const VkInstance_T,
pName: *const i8,
) -> Result<extern "system" fn(), VkError>
fn vkGetInstanceProcAddr( &self, instance: *const VkInstance_T, pName: *const i8, ) -> Result<extern "system" fn(), VkError>
Source§fn vkGetDeviceProcAddr(
&self,
device: *const VkDevice_T,
pName: *const i8,
) -> Result<extern "system" fn(), VkError>
fn vkGetDeviceProcAddr( &self, device: *const VkDevice_T, pName: *const i8, ) -> Result<extern "system" fn(), VkError>
Source§fn vkCreateDevice(
&self,
physicalDevice: *const VkPhysicalDevice_T,
pCreateInfo: *const VkDeviceCreateInfo,
pAllocator: *const VkAllocationCallbacks,
pDevice: *mut *const VkDevice_T,
) -> Result<(), VkError>
fn vkCreateDevice( &self, physicalDevice: *const VkPhysicalDevice_T, pCreateInfo: *const VkDeviceCreateInfo, pAllocator: *const VkAllocationCallbacks, pDevice: *mut *const VkDevice_T, ) -> Result<(), VkError>
Source§fn vkDestroyDevice(
&self,
device: *const VkDevice_T,
pAllocator: *const VkAllocationCallbacks,
) -> Result<(), VkError>
fn vkDestroyDevice( &self, device: *const VkDevice_T, pAllocator: *const VkAllocationCallbacks, ) -> Result<(), VkError>
Source§fn vkEnumerateInstanceExtensionProperties(
&self,
pLayerName: *const i8,
pPropertyCount: *mut u32,
pProperties: *mut VkExtensionProperties,
) -> Result<(), VkError>
fn vkEnumerateInstanceExtensionProperties( &self, pLayerName: *const i8, pPropertyCount: *mut u32, pProperties: *mut VkExtensionProperties, ) -> Result<(), VkError>
Source§fn vkEnumerateDeviceExtensionProperties(
&self,
physicalDevice: *const VkPhysicalDevice_T,
pLayerName: *const i8,
pPropertyCount: *mut u32,
pProperties: *mut VkExtensionProperties,
) -> Result<(), VkError>
fn vkEnumerateDeviceExtensionProperties( &self, physicalDevice: *const VkPhysicalDevice_T, pLayerName: *const i8, pPropertyCount: *mut u32, pProperties: *mut VkExtensionProperties, ) -> Result<(), VkError>
Source§fn vkEnumerateInstanceLayerProperties(
&self,
pPropertyCount: *mut u32,
pProperties: *mut VkLayerProperties,
) -> Result<(), VkError>
fn vkEnumerateInstanceLayerProperties( &self, pPropertyCount: *mut u32, pProperties: *mut VkLayerProperties, ) -> Result<(), VkError>
Source§fn vkEnumerateDeviceLayerProperties(
&self,
physicalDevice: *const VkPhysicalDevice_T,
pPropertyCount: *mut u32,
pProperties: *mut VkLayerProperties,
) -> Result<(), VkError>
fn vkEnumerateDeviceLayerProperties( &self, physicalDevice: *const VkPhysicalDevice_T, pPropertyCount: *mut u32, pProperties: *mut VkLayerProperties, ) -> Result<(), VkError>
Source§fn vkGetDeviceQueue(
&self,
device: *const VkDevice_T,
queueFamilyIndex: u32,
queueIndex: u32,
pQueue: *mut *const VkQueue_T,
) -> Result<(), VkError>
fn vkGetDeviceQueue( &self, device: *const VkDevice_T, queueFamilyIndex: u32, queueIndex: u32, pQueue: *mut *const VkQueue_T, ) -> Result<(), VkError>
Source§fn vkQueueSubmit(
&self,
queue: *const VkQueue_T,
submitCount: u32,
pSubmits: *const VkSubmitInfo,
fence: *const VkFence_T,
) -> Result<(), VkError>
fn vkQueueSubmit( &self, queue: *const VkQueue_T, submitCount: u32, pSubmits: *const VkSubmitInfo, fence: *const VkFence_T, ) -> Result<(), VkError>
Source§fn vkDeviceWaitIdle(&self, device: *const VkDevice_T) -> Result<(), VkError>
fn vkDeviceWaitIdle(&self, device: *const VkDevice_T) -> Result<(), VkError>
Source§fn vkAllocateMemory(
&self,
device: *const VkDevice_T,
pAllocateInfo: *const VkMemoryAllocateInfo,
pAllocator: *const VkAllocationCallbacks,
pMemory: *mut *const VkDeviceMemory_T,
) -> Result<(), VkError>
fn vkAllocateMemory( &self, device: *const VkDevice_T, pAllocateInfo: *const VkMemoryAllocateInfo, pAllocator: *const VkAllocationCallbacks, pMemory: *mut *const VkDeviceMemory_T, ) -> Result<(), VkError>
Source§fn vkFreeMemory(
&self,
device: *const VkDevice_T,
memory: *const VkDeviceMemory_T,
pAllocator: *const VkAllocationCallbacks,
) -> Result<(), VkError>
fn vkFreeMemory( &self, device: *const VkDevice_T, memory: *const VkDeviceMemory_T, pAllocator: *const VkAllocationCallbacks, ) -> Result<(), VkError>
Source§fn vkMapMemory(
&self,
device: *const VkDevice_T,
memory: *const VkDeviceMemory_T,
offset: u64,
size: u64,
flags: u32,
ppData: *mut *mut c_void,
) -> Result<(), VkError>
fn vkMapMemory( &self, device: *const VkDevice_T, memory: *const VkDeviceMemory_T, offset: u64, size: u64, flags: u32, ppData: *mut *mut c_void, ) -> Result<(), VkError>
Source§fn vkUnmapMemory(
&self,
device: *const VkDevice_T,
memory: *const VkDeviceMemory_T,
) -> Result<(), VkError>
fn vkUnmapMemory( &self, device: *const VkDevice_T, memory: *const VkDeviceMemory_T, ) -> Result<(), VkError>
Source§fn vkFlushMappedMemoryRanges(
&self,
device: *const VkDevice_T,
memoryRangeCount: u32,
pMemoryRanges: *const VkMappedMemoryRange,
) -> Result<(), VkError>
fn vkFlushMappedMemoryRanges( &self, device: *const VkDevice_T, memoryRangeCount: u32, pMemoryRanges: *const VkMappedMemoryRange, ) -> Result<(), VkError>
Source§fn vkInvalidateMappedMemoryRanges(
&self,
device: *const VkDevice_T,
memoryRangeCount: u32,
pMemoryRanges: *const VkMappedMemoryRange,
) -> Result<(), VkError>
fn vkInvalidateMappedMemoryRanges( &self, device: *const VkDevice_T, memoryRangeCount: u32, pMemoryRanges: *const VkMappedMemoryRange, ) -> Result<(), VkError>
Source§fn vkGetDeviceMemoryCommitment(
&self,
device: *const VkDevice_T,
memory: *const VkDeviceMemory_T,
pCommittedMemoryInBytes: *mut u64,
) -> Result<(), VkError>
fn vkGetDeviceMemoryCommitment( &self, device: *const VkDevice_T, memory: *const VkDeviceMemory_T, pCommittedMemoryInBytes: *mut u64, ) -> Result<(), VkError>
Source§fn vkBindBufferMemory(
&self,
device: *const VkDevice_T,
buffer: *const VkBuffer_T,
memory: *const VkDeviceMemory_T,
memoryOffset: u64,
) -> Result<(), VkError>
fn vkBindBufferMemory( &self, device: *const VkDevice_T, buffer: *const VkBuffer_T, memory: *const VkDeviceMemory_T, memoryOffset: u64, ) -> Result<(), VkError>
Source§fn vkBindImageMemory(
&self,
device: *const VkDevice_T,
image: *const VkImage_T,
memory: *const VkDeviceMemory_T,
memoryOffset: u64,
) -> Result<(), VkError>
fn vkBindImageMemory( &self, device: *const VkDevice_T, image: *const VkImage_T, memory: *const VkDeviceMemory_T, memoryOffset: u64, ) -> Result<(), VkError>
Source§fn vkGetBufferMemoryRequirements(
&self,
device: *const VkDevice_T,
buffer: *const VkBuffer_T,
pMemoryRequirements: *mut VkMemoryRequirements,
) -> Result<(), VkError>
fn vkGetBufferMemoryRequirements( &self, device: *const VkDevice_T, buffer: *const VkBuffer_T, pMemoryRequirements: *mut VkMemoryRequirements, ) -> Result<(), VkError>
Source§fn vkGetImageMemoryRequirements(
&self,
device: *const VkDevice_T,
image: *const VkImage_T,
pMemoryRequirements: *mut VkMemoryRequirements,
) -> Result<(), VkError>
fn vkGetImageMemoryRequirements( &self, device: *const VkDevice_T, image: *const VkImage_T, pMemoryRequirements: *mut VkMemoryRequirements, ) -> Result<(), VkError>
Source§fn vkGetImageSparseMemoryRequirements(
&self,
device: *const VkDevice_T,
image: *const VkImage_T,
pSparseMemoryRequirementCount: *mut u32,
pSparseMemoryRequirements: *mut VkSparseImageMemoryRequirements,
) -> Result<(), VkError>
fn vkGetImageSparseMemoryRequirements( &self, device: *const VkDevice_T, image: *const VkImage_T, pSparseMemoryRequirementCount: *mut u32, pSparseMemoryRequirements: *mut VkSparseImageMemoryRequirements, ) -> Result<(), VkError>
Source§fn vkGetPhysicalDeviceSparseImageFormatProperties(
&self,
physicalDevice: *const VkPhysicalDevice_T,
format: VkFormat,
type_: VkImageType,
samples: VkSampleCountFlagBits,
usage: u32,
tiling: VkImageTiling,
pPropertyCount: *mut u32,
pProperties: *mut VkSparseImageFormatProperties,
) -> Result<(), VkError>
fn vkGetPhysicalDeviceSparseImageFormatProperties( &self, physicalDevice: *const VkPhysicalDevice_T, format: VkFormat, type_: VkImageType, samples: VkSampleCountFlagBits, usage: u32, tiling: VkImageTiling, pPropertyCount: *mut u32, pProperties: *mut VkSparseImageFormatProperties, ) -> Result<(), VkError>
Source§fn vkQueueBindSparse(
&self,
queue: *const VkQueue_T,
bindInfoCount: u32,
pBindInfo: *const VkBindSparseInfo,
fence: *const VkFence_T,
) -> Result<(), VkError>
fn vkQueueBindSparse( &self, queue: *const VkQueue_T, bindInfoCount: u32, pBindInfo: *const VkBindSparseInfo, fence: *const VkFence_T, ) -> Result<(), VkError>
Source§fn vkCreateFence(
&self,
device: *const VkDevice_T,
pCreateInfo: *const VkFenceCreateInfo,
pAllocator: *const VkAllocationCallbacks,
pFence: *mut *const VkFence_T,
) -> Result<(), VkError>
fn vkCreateFence( &self, device: *const VkDevice_T, pCreateInfo: *const VkFenceCreateInfo, pAllocator: *const VkAllocationCallbacks, pFence: *mut *const VkFence_T, ) -> Result<(), VkError>
Source§fn vkDestroyFence(
&self,
device: *const VkDevice_T,
fence: *const VkFence_T,
pAllocator: *const VkAllocationCallbacks,
) -> Result<(), VkError>
fn vkDestroyFence( &self, device: *const VkDevice_T, fence: *const VkFence_T, pAllocator: *const VkAllocationCallbacks, ) -> Result<(), VkError>
Source§fn vkResetFences(
&self,
device: *const VkDevice_T,
fenceCount: u32,
pFences: *const *const VkFence_T,
) -> Result<(), VkError>
fn vkResetFences( &self, device: *const VkDevice_T, fenceCount: u32, pFences: *const *const VkFence_T, ) -> Result<(), VkError>
Source§fn vkGetFenceStatus(
&self,
device: *const VkDevice_T,
fence: *const VkFence_T,
) -> Result<(), VkError>
fn vkGetFenceStatus( &self, device: *const VkDevice_T, fence: *const VkFence_T, ) -> Result<(), VkError>
Source§fn vkWaitForFences(
&self,
device: *const VkDevice_T,
fenceCount: u32,
pFences: *const *const VkFence_T,
waitAll: u32,
timeout: u64,
) -> Result<(), VkError>
fn vkWaitForFences( &self, device: *const VkDevice_T, fenceCount: u32, pFences: *const *const VkFence_T, waitAll: u32, timeout: u64, ) -> Result<(), VkError>
Source§fn vkCreateSemaphore(
&self,
device: *const VkDevice_T,
pCreateInfo: *const VkSemaphoreCreateInfo,
pAllocator: *const VkAllocationCallbacks,
pSemaphore: *mut *const VkSemaphore_T,
) -> Result<(), VkError>
fn vkCreateSemaphore( &self, device: *const VkDevice_T, pCreateInfo: *const VkSemaphoreCreateInfo, pAllocator: *const VkAllocationCallbacks, pSemaphore: *mut *const VkSemaphore_T, ) -> Result<(), VkError>
Source§fn vkDestroySemaphore(
&self,
device: *const VkDevice_T,
semaphore: *const VkSemaphore_T,
pAllocator: *const VkAllocationCallbacks,
) -> Result<(), VkError>
fn vkDestroySemaphore( &self, device: *const VkDevice_T, semaphore: *const VkSemaphore_T, pAllocator: *const VkAllocationCallbacks, ) -> Result<(), VkError>
Source§fn vkCreateEvent(
&self,
device: *const VkDevice_T,
pCreateInfo: *const VkEventCreateInfo,
pAllocator: *const VkAllocationCallbacks,
pEvent: *mut *const VkEvent_T,
) -> Result<(), VkError>
fn vkCreateEvent( &self, device: *const VkDevice_T, pCreateInfo: *const VkEventCreateInfo, pAllocator: *const VkAllocationCallbacks, pEvent: *mut *const VkEvent_T, ) -> Result<(), VkError>
Source§fn vkDestroyEvent(
&self,
device: *const VkDevice_T,
event: *const VkEvent_T,
pAllocator: *const VkAllocationCallbacks,
) -> Result<(), VkError>
fn vkDestroyEvent( &self, device: *const VkDevice_T, event: *const VkEvent_T, pAllocator: *const VkAllocationCallbacks, ) -> Result<(), VkError>
Source§fn vkGetEventStatus(
&self,
device: *const VkDevice_T,
event: *const VkEvent_T,
) -> Result<(), VkError>
fn vkGetEventStatus( &self, device: *const VkDevice_T, event: *const VkEvent_T, ) -> Result<(), VkError>
Source§fn vkSetEvent(
&self,
device: *const VkDevice_T,
event: *const VkEvent_T,
) -> Result<(), VkError>
fn vkSetEvent( &self, device: *const VkDevice_T, event: *const VkEvent_T, ) -> Result<(), VkError>
Source§fn vkResetEvent(
&self,
device: *const VkDevice_T,
event: *const VkEvent_T,
) -> Result<(), VkError>
fn vkResetEvent( &self, device: *const VkDevice_T, event: *const VkEvent_T, ) -> Result<(), VkError>
Source§fn vkCreateQueryPool(
&self,
device: *const VkDevice_T,
pCreateInfo: *const VkQueryPoolCreateInfo,
pAllocator: *const VkAllocationCallbacks,
pQueryPool: *mut *const VkQueryPool_T,
) -> Result<(), VkError>
fn vkCreateQueryPool( &self, device: *const VkDevice_T, pCreateInfo: *const VkQueryPoolCreateInfo, pAllocator: *const VkAllocationCallbacks, pQueryPool: *mut *const VkQueryPool_T, ) -> Result<(), VkError>
Source§fn vkDestroyQueryPool(
&self,
device: *const VkDevice_T,
queryPool: *const VkQueryPool_T,
pAllocator: *const VkAllocationCallbacks,
) -> Result<(), VkError>
fn vkDestroyQueryPool( &self, device: *const VkDevice_T, queryPool: *const VkQueryPool_T, pAllocator: *const VkAllocationCallbacks, ) -> Result<(), VkError>
Source§fn vkGetQueryPoolResults(
&self,
device: *const VkDevice_T,
queryPool: *const VkQueryPool_T,
firstQuery: u32,
queryCount: u32,
dataSize: usize,
pData: *mut c_void,
stride: u64,
flags: u32,
) -> Result<(), VkError>
fn vkGetQueryPoolResults( &self, device: *const VkDevice_T, queryPool: *const VkQueryPool_T, firstQuery: u32, queryCount: u32, dataSize: usize, pData: *mut c_void, stride: u64, flags: u32, ) -> Result<(), VkError>
Source§fn vkCreateBuffer(
&self,
device: *const VkDevice_T,
pCreateInfo: *const VkBufferCreateInfo,
pAllocator: *const VkAllocationCallbacks,
pBuffer: *mut *const VkBuffer_T,
) -> Result<(), VkError>
fn vkCreateBuffer( &self, device: *const VkDevice_T, pCreateInfo: *const VkBufferCreateInfo, pAllocator: *const VkAllocationCallbacks, pBuffer: *mut *const VkBuffer_T, ) -> Result<(), VkError>
Source§fn vkDestroyBuffer(
&self,
device: *const VkDevice_T,
buffer: *const VkBuffer_T,
pAllocator: *const VkAllocationCallbacks,
) -> Result<(), VkError>
fn vkDestroyBuffer( &self, device: *const VkDevice_T, buffer: *const VkBuffer_T, pAllocator: *const VkAllocationCallbacks, ) -> Result<(), VkError>
Source§fn vkCreateBufferView(
&self,
device: *const VkDevice_T,
pCreateInfo: *const VkBufferViewCreateInfo,
pAllocator: *const VkAllocationCallbacks,
pView: *mut *const VkBufferView_T,
) -> Result<(), VkError>
fn vkCreateBufferView( &self, device: *const VkDevice_T, pCreateInfo: *const VkBufferViewCreateInfo, pAllocator: *const VkAllocationCallbacks, pView: *mut *const VkBufferView_T, ) -> Result<(), VkError>
Source§fn vkDestroyBufferView(
&self,
device: *const VkDevice_T,
bufferView: *const VkBufferView_T,
pAllocator: *const VkAllocationCallbacks,
) -> Result<(), VkError>
fn vkDestroyBufferView( &self, device: *const VkDevice_T, bufferView: *const VkBufferView_T, pAllocator: *const VkAllocationCallbacks, ) -> Result<(), VkError>
Source§fn vkCreateImage(
&self,
device: *const VkDevice_T,
pCreateInfo: *const VkImageCreateInfo,
pAllocator: *const VkAllocationCallbacks,
pImage: *mut *const VkImage_T,
) -> Result<(), VkError>
fn vkCreateImage( &self, device: *const VkDevice_T, pCreateInfo: *const VkImageCreateInfo, pAllocator: *const VkAllocationCallbacks, pImage: *mut *const VkImage_T, ) -> Result<(), VkError>
Source§fn vkDestroyImage(
&self,
device: *const VkDevice_T,
image: *const VkImage_T,
pAllocator: *const VkAllocationCallbacks,
) -> Result<(), VkError>
fn vkDestroyImage( &self, device: *const VkDevice_T, image: *const VkImage_T, pAllocator: *const VkAllocationCallbacks, ) -> Result<(), VkError>
Source§fn vkGetImageSubresourceLayout(
&self,
device: *const VkDevice_T,
image: *const VkImage_T,
pSubresource: *const VkImageSubresource,
pLayout: *mut VkSubresourceLayout,
) -> Result<(), VkError>
fn vkGetImageSubresourceLayout( &self, device: *const VkDevice_T, image: *const VkImage_T, pSubresource: *const VkImageSubresource, pLayout: *mut VkSubresourceLayout, ) -> Result<(), VkError>
Source§fn vkCreateImageView(
&self,
device: *const VkDevice_T,
pCreateInfo: *const VkImageViewCreateInfo,
pAllocator: *const VkAllocationCallbacks,
pView: *mut *const VkImageView_T,
) -> Result<(), VkError>
fn vkCreateImageView( &self, device: *const VkDevice_T, pCreateInfo: *const VkImageViewCreateInfo, pAllocator: *const VkAllocationCallbacks, pView: *mut *const VkImageView_T, ) -> Result<(), VkError>
Source§fn vkDestroyImageView(
&self,
device: *const VkDevice_T,
imageView: *const VkImageView_T,
pAllocator: *const VkAllocationCallbacks,
) -> Result<(), VkError>
fn vkDestroyImageView( &self, device: *const VkDevice_T, imageView: *const VkImageView_T, pAllocator: *const VkAllocationCallbacks, ) -> Result<(), VkError>
Source§fn vkCreateShaderModule(
&self,
device: *const VkDevice_T,
pCreateInfo: *const VkShaderModuleCreateInfo,
pAllocator: *const VkAllocationCallbacks,
pShaderModule: *mut *const VkShaderModule_T,
) -> Result<(), VkError>
fn vkCreateShaderModule( &self, device: *const VkDevice_T, pCreateInfo: *const VkShaderModuleCreateInfo, pAllocator: *const VkAllocationCallbacks, pShaderModule: *mut *const VkShaderModule_T, ) -> Result<(), VkError>
Source§fn vkDestroyShaderModule(
&self,
device: *const VkDevice_T,
shaderModule: *const VkShaderModule_T,
pAllocator: *const VkAllocationCallbacks,
) -> Result<(), VkError>
fn vkDestroyShaderModule( &self, device: *const VkDevice_T, shaderModule: *const VkShaderModule_T, pAllocator: *const VkAllocationCallbacks, ) -> Result<(), VkError>
Source§fn vkCreatePipelineCache(
&self,
device: *const VkDevice_T,
pCreateInfo: *const VkPipelineCacheCreateInfo,
pAllocator: *const VkAllocationCallbacks,
pPipelineCache: *mut *const VkPipelineCache_T,
) -> Result<(), VkError>
fn vkCreatePipelineCache( &self, device: *const VkDevice_T, pCreateInfo: *const VkPipelineCacheCreateInfo, pAllocator: *const VkAllocationCallbacks, pPipelineCache: *mut *const VkPipelineCache_T, ) -> Result<(), VkError>
Source§fn vkDestroyPipelineCache(
&self,
device: *const VkDevice_T,
pipelineCache: *const VkPipelineCache_T,
pAllocator: *const VkAllocationCallbacks,
) -> Result<(), VkError>
fn vkDestroyPipelineCache( &self, device: *const VkDevice_T, pipelineCache: *const VkPipelineCache_T, pAllocator: *const VkAllocationCallbacks, ) -> Result<(), VkError>
Source§fn vkGetPipelineCacheData(
&self,
device: *const VkDevice_T,
pipelineCache: *const VkPipelineCache_T,
pDataSize: *mut usize,
pData: *mut c_void,
) -> Result<(), VkError>
fn vkGetPipelineCacheData( &self, device: *const VkDevice_T, pipelineCache: *const VkPipelineCache_T, pDataSize: *mut usize, pData: *mut c_void, ) -> Result<(), VkError>
Source§fn vkMergePipelineCaches(
&self,
device: *const VkDevice_T,
dstCache: *const VkPipelineCache_T,
srcCacheCount: u32,
pSrcCaches: *const *const VkPipelineCache_T,
) -> Result<(), VkError>
fn vkMergePipelineCaches( &self, device: *const VkDevice_T, dstCache: *const VkPipelineCache_T, srcCacheCount: u32, pSrcCaches: *const *const VkPipelineCache_T, ) -> Result<(), VkError>
Source§fn vkCreateGraphicsPipelines(
&self,
device: *const VkDevice_T,
pipelineCache: *const VkPipelineCache_T,
createInfoCount: u32,
pCreateInfos: *const VkGraphicsPipelineCreateInfo,
pAllocator: *const VkAllocationCallbacks,
pPipelines: *mut *const VkPipeline_T,
) -> Result<(), VkError>
fn vkCreateGraphicsPipelines( &self, device: *const VkDevice_T, pipelineCache: *const VkPipelineCache_T, createInfoCount: u32, pCreateInfos: *const VkGraphicsPipelineCreateInfo, pAllocator: *const VkAllocationCallbacks, pPipelines: *mut *const VkPipeline_T, ) -> Result<(), VkError>
Source§fn vkCreateComputePipelines(
&self,
device: *const VkDevice_T,
pipelineCache: *const VkPipelineCache_T,
createInfoCount: u32,
pCreateInfos: *const VkComputePipelineCreateInfo,
pAllocator: *const VkAllocationCallbacks,
pPipelines: *mut *const VkPipeline_T,
) -> Result<(), VkError>
fn vkCreateComputePipelines( &self, device: *const VkDevice_T, pipelineCache: *const VkPipelineCache_T, createInfoCount: u32, pCreateInfos: *const VkComputePipelineCreateInfo, pAllocator: *const VkAllocationCallbacks, pPipelines: *mut *const VkPipeline_T, ) -> Result<(), VkError>
Source§fn vkDestroyPipeline(
&self,
device: *const VkDevice_T,
pipeline: *const VkPipeline_T,
pAllocator: *const VkAllocationCallbacks,
) -> Result<(), VkError>
fn vkDestroyPipeline( &self, device: *const VkDevice_T, pipeline: *const VkPipeline_T, pAllocator: *const VkAllocationCallbacks, ) -> Result<(), VkError>
Source§fn vkCreatePipelineLayout(
&self,
device: *const VkDevice_T,
pCreateInfo: *const VkPipelineLayoutCreateInfo,
pAllocator: *const VkAllocationCallbacks,
pPipelineLayout: *mut *const VkPipelineLayout_T,
) -> Result<(), VkError>
fn vkCreatePipelineLayout( &self, device: *const VkDevice_T, pCreateInfo: *const VkPipelineLayoutCreateInfo, pAllocator: *const VkAllocationCallbacks, pPipelineLayout: *mut *const VkPipelineLayout_T, ) -> Result<(), VkError>
Source§fn vkDestroyPipelineLayout(
&self,
device: *const VkDevice_T,
pipelineLayout: *const VkPipelineLayout_T,
pAllocator: *const VkAllocationCallbacks,
) -> Result<(), VkError>
fn vkDestroyPipelineLayout( &self, device: *const VkDevice_T, pipelineLayout: *const VkPipelineLayout_T, pAllocator: *const VkAllocationCallbacks, ) -> Result<(), VkError>
Source§fn vkCreateSampler(
&self,
device: *const VkDevice_T,
pCreateInfo: *const VkSamplerCreateInfo,
pAllocator: *const VkAllocationCallbacks,
pSampler: *mut *const VkSampler_T,
) -> Result<(), VkError>
fn vkCreateSampler( &self, device: *const VkDevice_T, pCreateInfo: *const VkSamplerCreateInfo, pAllocator: *const VkAllocationCallbacks, pSampler: *mut *const VkSampler_T, ) -> Result<(), VkError>
Source§fn vkDestroySampler(
&self,
device: *const VkDevice_T,
sampler: *const VkSampler_T,
pAllocator: *const VkAllocationCallbacks,
) -> Result<(), VkError>
fn vkDestroySampler( &self, device: *const VkDevice_T, sampler: *const VkSampler_T, pAllocator: *const VkAllocationCallbacks, ) -> Result<(), VkError>
Source§fn vkCreateDescriptorSetLayout(
&self,
device: *const VkDevice_T,
pCreateInfo: *const VkDescriptorSetLayoutCreateInfo,
pAllocator: *const VkAllocationCallbacks,
pSetLayout: *mut *const VkDescriptorSetLayout_T,
) -> Result<(), VkError>
fn vkCreateDescriptorSetLayout( &self, device: *const VkDevice_T, pCreateInfo: *const VkDescriptorSetLayoutCreateInfo, pAllocator: *const VkAllocationCallbacks, pSetLayout: *mut *const VkDescriptorSetLayout_T, ) -> Result<(), VkError>
Source§fn vkDestroyDescriptorSetLayout(
&self,
device: *const VkDevice_T,
descriptorSetLayout: *const VkDescriptorSetLayout_T,
pAllocator: *const VkAllocationCallbacks,
) -> Result<(), VkError>
fn vkDestroyDescriptorSetLayout( &self, device: *const VkDevice_T, descriptorSetLayout: *const VkDescriptorSetLayout_T, pAllocator: *const VkAllocationCallbacks, ) -> Result<(), VkError>
Source§fn vkCreateDescriptorPool(
&self,
device: *const VkDevice_T,
pCreateInfo: *const VkDescriptorPoolCreateInfo,
pAllocator: *const VkAllocationCallbacks,
pDescriptorPool: *mut *const VkDescriptorPool_T,
) -> Result<(), VkError>
fn vkCreateDescriptorPool( &self, device: *const VkDevice_T, pCreateInfo: *const VkDescriptorPoolCreateInfo, pAllocator: *const VkAllocationCallbacks, pDescriptorPool: *mut *const VkDescriptorPool_T, ) -> Result<(), VkError>
Source§fn vkDestroyDescriptorPool(
&self,
device: *const VkDevice_T,
descriptorPool: *const VkDescriptorPool_T,
pAllocator: *const VkAllocationCallbacks,
) -> Result<(), VkError>
fn vkDestroyDescriptorPool( &self, device: *const VkDevice_T, descriptorPool: *const VkDescriptorPool_T, pAllocator: *const VkAllocationCallbacks, ) -> Result<(), VkError>
Source§fn vkResetDescriptorPool(
&self,
device: *const VkDevice_T,
descriptorPool: *const VkDescriptorPool_T,
flags: u32,
) -> Result<(), VkError>
fn vkResetDescriptorPool( &self, device: *const VkDevice_T, descriptorPool: *const VkDescriptorPool_T, flags: u32, ) -> Result<(), VkError>
Source§fn vkAllocateDescriptorSets(
&self,
device: *const VkDevice_T,
pAllocateInfo: *const VkDescriptorSetAllocateInfo,
pDescriptorSets: *mut *const VkDescriptorSet_T,
) -> Result<(), VkError>
fn vkAllocateDescriptorSets( &self, device: *const VkDevice_T, pAllocateInfo: *const VkDescriptorSetAllocateInfo, pDescriptorSets: *mut *const VkDescriptorSet_T, ) -> Result<(), VkError>
Source§fn vkFreeDescriptorSets(
&self,
device: *const VkDevice_T,
descriptorPool: *const VkDescriptorPool_T,
descriptorSetCount: u32,
pDescriptorSets: *const *const VkDescriptorSet_T,
) -> Result<(), VkError>
fn vkFreeDescriptorSets( &self, device: *const VkDevice_T, descriptorPool: *const VkDescriptorPool_T, descriptorSetCount: u32, pDescriptorSets: *const *const VkDescriptorSet_T, ) -> Result<(), VkError>
Source§fn vkUpdateDescriptorSets(
&self,
device: *const VkDevice_T,
descriptorWriteCount: u32,
pDescriptorWrites: *const VkWriteDescriptorSet,
descriptorCopyCount: u32,
pDescriptorCopies: *const VkCopyDescriptorSet,
) -> Result<(), VkError>
fn vkUpdateDescriptorSets( &self, device: *const VkDevice_T, descriptorWriteCount: u32, pDescriptorWrites: *const VkWriteDescriptorSet, descriptorCopyCount: u32, pDescriptorCopies: *const VkCopyDescriptorSet, ) -> Result<(), VkError>
Source§fn vkCreateFramebuffer(
&self,
device: *const VkDevice_T,
pCreateInfo: *const VkFramebufferCreateInfo,
pAllocator: *const VkAllocationCallbacks,
pFramebuffer: *mut *const VkFramebuffer_T,
) -> Result<(), VkError>
fn vkCreateFramebuffer( &self, device: *const VkDevice_T, pCreateInfo: *const VkFramebufferCreateInfo, pAllocator: *const VkAllocationCallbacks, pFramebuffer: *mut *const VkFramebuffer_T, ) -> Result<(), VkError>
Source§fn vkDestroyFramebuffer(
&self,
device: *const VkDevice_T,
framebuffer: *const VkFramebuffer_T,
pAllocator: *const VkAllocationCallbacks,
) -> Result<(), VkError>
fn vkDestroyFramebuffer( &self, device: *const VkDevice_T, framebuffer: *const VkFramebuffer_T, pAllocator: *const VkAllocationCallbacks, ) -> Result<(), VkError>
Source§fn vkCreateRenderPass(
&self,
device: *const VkDevice_T,
pCreateInfo: *const VkRenderPassCreateInfo,
pAllocator: *const VkAllocationCallbacks,
pRenderPass: *mut *const VkRenderPass_T,
) -> Result<(), VkError>
fn vkCreateRenderPass( &self, device: *const VkDevice_T, pCreateInfo: *const VkRenderPassCreateInfo, pAllocator: *const VkAllocationCallbacks, pRenderPass: *mut *const VkRenderPass_T, ) -> Result<(), VkError>
Source§fn vkDestroyRenderPass(
&self,
device: *const VkDevice_T,
renderPass: *const VkRenderPass_T,
pAllocator: *const VkAllocationCallbacks,
) -> Result<(), VkError>
fn vkDestroyRenderPass( &self, device: *const VkDevice_T, renderPass: *const VkRenderPass_T, pAllocator: *const VkAllocationCallbacks, ) -> Result<(), VkError>
Source§fn vkGetRenderAreaGranularity(
&self,
device: *const VkDevice_T,
renderPass: *const VkRenderPass_T,
pGranularity: *mut VkExtent2D,
) -> Result<(), VkError>
fn vkGetRenderAreaGranularity( &self, device: *const VkDevice_T, renderPass: *const VkRenderPass_T, pGranularity: *mut VkExtent2D, ) -> Result<(), VkError>
Source§fn vkCreateCommandPool(
&self,
device: *const VkDevice_T,
pCreateInfo: *const VkCommandPoolCreateInfo,
pAllocator: *const VkAllocationCallbacks,
pCommandPool: *mut *const VkCommandPool_T,
) -> Result<(), VkError>
fn vkCreateCommandPool( &self, device: *const VkDevice_T, pCreateInfo: *const VkCommandPoolCreateInfo, pAllocator: *const VkAllocationCallbacks, pCommandPool: *mut *const VkCommandPool_T, ) -> Result<(), VkError>
Source§fn vkDestroyCommandPool(
&self,
device: *const VkDevice_T,
commandPool: *const VkCommandPool_T,
pAllocator: *const VkAllocationCallbacks,
) -> Result<(), VkError>
fn vkDestroyCommandPool( &self, device: *const VkDevice_T, commandPool: *const VkCommandPool_T, pAllocator: *const VkAllocationCallbacks, ) -> Result<(), VkError>
Source§fn vkResetCommandPool(
&self,
device: *const VkDevice_T,
commandPool: *const VkCommandPool_T,
flags: u32,
) -> Result<(), VkError>
fn vkResetCommandPool( &self, device: *const VkDevice_T, commandPool: *const VkCommandPool_T, flags: u32, ) -> Result<(), VkError>
Source§fn vkAllocateCommandBuffers(
&self,
device: *const VkDevice_T,
pAllocateInfo: *const VkCommandBufferAllocateInfo,
pCommandBuffers: *mut *const VkCommandBuffer_T,
) -> Result<(), VkError>
fn vkAllocateCommandBuffers( &self, device: *const VkDevice_T, pAllocateInfo: *const VkCommandBufferAllocateInfo, pCommandBuffers: *mut *const VkCommandBuffer_T, ) -> Result<(), VkError>
Source§fn vkFreeCommandBuffers(
&self,
device: *const VkDevice_T,
commandPool: *const VkCommandPool_T,
commandBufferCount: u32,
pCommandBuffers: *const *const VkCommandBuffer_T,
) -> Result<(), VkError>
fn vkFreeCommandBuffers( &self, device: *const VkDevice_T, commandPool: *const VkCommandPool_T, commandBufferCount: u32, pCommandBuffers: *const *const VkCommandBuffer_T, ) -> Result<(), VkError>
Source§fn vkBeginCommandBuffer(
&self,
commandBuffer: *const VkCommandBuffer_T,
pBeginInfo: *const VkCommandBufferBeginInfo,
) -> Result<(), VkError>
fn vkBeginCommandBuffer( &self, commandBuffer: *const VkCommandBuffer_T, pBeginInfo: *const VkCommandBufferBeginInfo, ) -> Result<(), VkError>
Source§fn vkEndCommandBuffer(
&self,
commandBuffer: *const VkCommandBuffer_T,
) -> Result<(), VkError>
fn vkEndCommandBuffer( &self, commandBuffer: *const VkCommandBuffer_T, ) -> Result<(), VkError>
Source§fn vkResetCommandBuffer(
&self,
commandBuffer: *const VkCommandBuffer_T,
flags: u32,
) -> Result<(), VkError>
fn vkResetCommandBuffer( &self, commandBuffer: *const VkCommandBuffer_T, flags: u32, ) -> Result<(), VkError>
Source§fn vkCmdBindPipeline(
&self,
commandBuffer: *const VkCommandBuffer_T,
pipelineBindPoint: VkPipelineBindPoint,
pipeline: *const VkPipeline_T,
) -> Result<(), VkError>
fn vkCmdBindPipeline( &self, commandBuffer: *const VkCommandBuffer_T, pipelineBindPoint: VkPipelineBindPoint, pipeline: *const VkPipeline_T, ) -> Result<(), VkError>
Source§fn vkCmdSetViewport(
&self,
commandBuffer: *const VkCommandBuffer_T,
firstViewport: u32,
viewportCount: u32,
pViewports: *const VkViewport,
) -> Result<(), VkError>
fn vkCmdSetViewport( &self, commandBuffer: *const VkCommandBuffer_T, firstViewport: u32, viewportCount: u32, pViewports: *const VkViewport, ) -> Result<(), VkError>
Source§fn vkCmdSetScissor(
&self,
commandBuffer: *const VkCommandBuffer_T,
firstScissor: u32,
scissorCount: u32,
pScissors: *const VkRect2D,
) -> Result<(), VkError>
fn vkCmdSetScissor( &self, commandBuffer: *const VkCommandBuffer_T, firstScissor: u32, scissorCount: u32, pScissors: *const VkRect2D, ) -> Result<(), VkError>
Source§fn vkCmdSetLineWidth(
&self,
commandBuffer: *const VkCommandBuffer_T,
lineWidth: f32,
) -> Result<(), VkError>
fn vkCmdSetLineWidth( &self, commandBuffer: *const VkCommandBuffer_T, lineWidth: f32, ) -> Result<(), VkError>
Source§fn vkCmdSetDepthBias(
&self,
commandBuffer: *const VkCommandBuffer_T,
depthBiasConstantFactor: f32,
depthBiasClamp: f32,
depthBiasSlopeFactor: f32,
) -> Result<(), VkError>
fn vkCmdSetDepthBias( &self, commandBuffer: *const VkCommandBuffer_T, depthBiasConstantFactor: f32, depthBiasClamp: f32, depthBiasSlopeFactor: f32, ) -> Result<(), VkError>
Source§fn vkCmdSetBlendConstants(
&self,
commandBuffer: *const VkCommandBuffer_T,
blendConstants: &[f32; 4],
) -> Result<(), VkError>
fn vkCmdSetBlendConstants( &self, commandBuffer: *const VkCommandBuffer_T, blendConstants: &[f32; 4], ) -> Result<(), VkError>
Source§fn vkCmdSetDepthBounds(
&self,
commandBuffer: *const VkCommandBuffer_T,
minDepthBounds: f32,
maxDepthBounds: f32,
) -> Result<(), VkError>
fn vkCmdSetDepthBounds( &self, commandBuffer: *const VkCommandBuffer_T, minDepthBounds: f32, maxDepthBounds: f32, ) -> Result<(), VkError>
Source§fn vkCmdSetStencilCompareMask(
&self,
commandBuffer: *const VkCommandBuffer_T,
faceMask: u32,
compareMask: u32,
) -> Result<(), VkError>
fn vkCmdSetStencilCompareMask( &self, commandBuffer: *const VkCommandBuffer_T, faceMask: u32, compareMask: u32, ) -> Result<(), VkError>
Source§fn vkCmdSetStencilWriteMask(
&self,
commandBuffer: *const VkCommandBuffer_T,
faceMask: u32,
writeMask: u32,
) -> Result<(), VkError>
fn vkCmdSetStencilWriteMask( &self, commandBuffer: *const VkCommandBuffer_T, faceMask: u32, writeMask: u32, ) -> Result<(), VkError>
Source§fn vkCmdSetStencilReference(
&self,
commandBuffer: *const VkCommandBuffer_T,
faceMask: u32,
reference: u32,
) -> Result<(), VkError>
fn vkCmdSetStencilReference( &self, commandBuffer: *const VkCommandBuffer_T, faceMask: u32, reference: u32, ) -> Result<(), VkError>
Source§fn vkCmdBindDescriptorSets(
&self,
commandBuffer: *const VkCommandBuffer_T,
pipelineBindPoint: VkPipelineBindPoint,
layout: *const VkPipelineLayout_T,
firstSet: u32,
descriptorSetCount: u32,
pDescriptorSets: *const *const VkDescriptorSet_T,
dynamicOffsetCount: u32,
pDynamicOffsets: *const u32,
) -> Result<(), VkError>
fn vkCmdBindDescriptorSets( &self, commandBuffer: *const VkCommandBuffer_T, pipelineBindPoint: VkPipelineBindPoint, layout: *const VkPipelineLayout_T, firstSet: u32, descriptorSetCount: u32, pDescriptorSets: *const *const VkDescriptorSet_T, dynamicOffsetCount: u32, pDynamicOffsets: *const u32, ) -> Result<(), VkError>
Source§fn vkCmdBindIndexBuffer(
&self,
commandBuffer: *const VkCommandBuffer_T,
buffer: *const VkBuffer_T,
offset: u64,
indexType: VkIndexType,
) -> Result<(), VkError>
fn vkCmdBindIndexBuffer( &self, commandBuffer: *const VkCommandBuffer_T, buffer: *const VkBuffer_T, offset: u64, indexType: VkIndexType, ) -> Result<(), VkError>
Source§fn vkCmdBindVertexBuffers(
&self,
commandBuffer: *const VkCommandBuffer_T,
firstBinding: u32,
bindingCount: u32,
pBuffers: *const *const VkBuffer_T,
pOffsets: *const u64,
) -> Result<(), VkError>
fn vkCmdBindVertexBuffers( &self, commandBuffer: *const VkCommandBuffer_T, firstBinding: u32, bindingCount: u32, pBuffers: *const *const VkBuffer_T, pOffsets: *const u64, ) -> Result<(), VkError>
Source§fn vkCmdDraw(
&self,
commandBuffer: *const VkCommandBuffer_T,
vertexCount: u32,
instanceCount: u32,
firstVertex: u32,
firstInstance: u32,
) -> Result<(), VkError>
fn vkCmdDraw( &self, commandBuffer: *const VkCommandBuffer_T, vertexCount: u32, instanceCount: u32, firstVertex: u32, firstInstance: u32, ) -> Result<(), VkError>
Source§fn vkCmdDrawIndexed(
&self,
commandBuffer: *const VkCommandBuffer_T,
indexCount: u32,
instanceCount: u32,
firstIndex: u32,
vertexOffset: i32,
firstInstance: u32,
) -> Result<(), VkError>
fn vkCmdDrawIndexed( &self, commandBuffer: *const VkCommandBuffer_T, indexCount: u32, instanceCount: u32, firstIndex: u32, vertexOffset: i32, firstInstance: u32, ) -> Result<(), VkError>
Source§fn vkCmdDrawIndirect(
&self,
commandBuffer: *const VkCommandBuffer_T,
buffer: *const VkBuffer_T,
offset: u64,
drawCount: u32,
stride: u32,
) -> Result<(), VkError>
fn vkCmdDrawIndirect( &self, commandBuffer: *const VkCommandBuffer_T, buffer: *const VkBuffer_T, offset: u64, drawCount: u32, stride: u32, ) -> Result<(), VkError>
Source§fn vkCmdDrawIndexedIndirect(
&self,
commandBuffer: *const VkCommandBuffer_T,
buffer: *const VkBuffer_T,
offset: u64,
drawCount: u32,
stride: u32,
) -> Result<(), VkError>
fn vkCmdDrawIndexedIndirect( &self, commandBuffer: *const VkCommandBuffer_T, buffer: *const VkBuffer_T, offset: u64, drawCount: u32, stride: u32, ) -> Result<(), VkError>
Source§fn vkCmdDispatch(
&self,
commandBuffer: *const VkCommandBuffer_T,
groupCountX: u32,
groupCountY: u32,
groupCountZ: u32,
) -> Result<(), VkError>
fn vkCmdDispatch( &self, commandBuffer: *const VkCommandBuffer_T, groupCountX: u32, groupCountY: u32, groupCountZ: u32, ) -> Result<(), VkError>
Source§fn vkCmdDispatchIndirect(
&self,
commandBuffer: *const VkCommandBuffer_T,
buffer: *const VkBuffer_T,
offset: u64,
) -> Result<(), VkError>
fn vkCmdDispatchIndirect( &self, commandBuffer: *const VkCommandBuffer_T, buffer: *const VkBuffer_T, offset: u64, ) -> Result<(), VkError>
Source§fn vkCmdCopyBuffer(
&self,
commandBuffer: *const VkCommandBuffer_T,
srcBuffer: *const VkBuffer_T,
dstBuffer: *const VkBuffer_T,
regionCount: u32,
pRegions: *const VkBufferCopy,
) -> Result<(), VkError>
fn vkCmdCopyBuffer( &self, commandBuffer: *const VkCommandBuffer_T, srcBuffer: *const VkBuffer_T, dstBuffer: *const VkBuffer_T, regionCount: u32, pRegions: *const VkBufferCopy, ) -> Result<(), VkError>
Source§fn vkCmdCopyImage(
&self,
commandBuffer: *const VkCommandBuffer_T,
srcImage: *const VkImage_T,
srcImageLayout: VkImageLayout,
dstImage: *const VkImage_T,
dstImageLayout: VkImageLayout,
regionCount: u32,
pRegions: *const VkImageCopy,
) -> Result<(), VkError>
fn vkCmdCopyImage( &self, commandBuffer: *const VkCommandBuffer_T, srcImage: *const VkImage_T, srcImageLayout: VkImageLayout, dstImage: *const VkImage_T, dstImageLayout: VkImageLayout, regionCount: u32, pRegions: *const VkImageCopy, ) -> Result<(), VkError>
Source§fn vkCmdBlitImage(
&self,
commandBuffer: *const VkCommandBuffer_T,
srcImage: *const VkImage_T,
srcImageLayout: VkImageLayout,
dstImage: *const VkImage_T,
dstImageLayout: VkImageLayout,
regionCount: u32,
pRegions: *const VkImageBlit,
filter: VkFilter,
) -> Result<(), VkError>
fn vkCmdBlitImage( &self, commandBuffer: *const VkCommandBuffer_T, srcImage: *const VkImage_T, srcImageLayout: VkImageLayout, dstImage: *const VkImage_T, dstImageLayout: VkImageLayout, regionCount: u32, pRegions: *const VkImageBlit, filter: VkFilter, ) -> Result<(), VkError>
Source§fn vkCmdCopyBufferToImage(
&self,
commandBuffer: *const VkCommandBuffer_T,
srcBuffer: *const VkBuffer_T,
dstImage: *const VkImage_T,
dstImageLayout: VkImageLayout,
regionCount: u32,
pRegions: *const VkBufferImageCopy,
) -> Result<(), VkError>
fn vkCmdCopyBufferToImage( &self, commandBuffer: *const VkCommandBuffer_T, srcBuffer: *const VkBuffer_T, dstImage: *const VkImage_T, dstImageLayout: VkImageLayout, regionCount: u32, pRegions: *const VkBufferImageCopy, ) -> Result<(), VkError>
Source§fn vkCmdCopyImageToBuffer(
&self,
commandBuffer: *const VkCommandBuffer_T,
srcImage: *const VkImage_T,
srcImageLayout: VkImageLayout,
dstBuffer: *const VkBuffer_T,
regionCount: u32,
pRegions: *const VkBufferImageCopy,
) -> Result<(), VkError>
fn vkCmdCopyImageToBuffer( &self, commandBuffer: *const VkCommandBuffer_T, srcImage: *const VkImage_T, srcImageLayout: VkImageLayout, dstBuffer: *const VkBuffer_T, regionCount: u32, pRegions: *const VkBufferImageCopy, ) -> Result<(), VkError>
Source§fn vkCmdUpdateBuffer(
&self,
commandBuffer: *const VkCommandBuffer_T,
dstBuffer: *const VkBuffer_T,
dstOffset: u64,
dataSize: u64,
pData: *const c_void,
) -> Result<(), VkError>
fn vkCmdUpdateBuffer( &self, commandBuffer: *const VkCommandBuffer_T, dstBuffer: *const VkBuffer_T, dstOffset: u64, dataSize: u64, pData: *const c_void, ) -> Result<(), VkError>
Source§fn vkCmdFillBuffer(
&self,
commandBuffer: *const VkCommandBuffer_T,
dstBuffer: *const VkBuffer_T,
dstOffset: u64,
size: u64,
data: u32,
) -> Result<(), VkError>
fn vkCmdFillBuffer( &self, commandBuffer: *const VkCommandBuffer_T, dstBuffer: *const VkBuffer_T, dstOffset: u64, size: u64, data: u32, ) -> Result<(), VkError>
Source§fn vkCmdClearColorImage(
&self,
commandBuffer: *const VkCommandBuffer_T,
image: *const VkImage_T,
imageLayout: VkImageLayout,
pColor: *const VkClearColorValue,
rangeCount: u32,
pRanges: *const VkImageSubresourceRange,
) -> Result<(), VkError>
fn vkCmdClearColorImage( &self, commandBuffer: *const VkCommandBuffer_T, image: *const VkImage_T, imageLayout: VkImageLayout, pColor: *const VkClearColorValue, rangeCount: u32, pRanges: *const VkImageSubresourceRange, ) -> Result<(), VkError>
Source§fn vkCmdClearDepthStencilImage(
&self,
commandBuffer: *const VkCommandBuffer_T,
image: *const VkImage_T,
imageLayout: VkImageLayout,
pDepthStencil: *const VkClearDepthStencilValue,
rangeCount: u32,
pRanges: *const VkImageSubresourceRange,
) -> Result<(), VkError>
fn vkCmdClearDepthStencilImage( &self, commandBuffer: *const VkCommandBuffer_T, image: *const VkImage_T, imageLayout: VkImageLayout, pDepthStencil: *const VkClearDepthStencilValue, rangeCount: u32, pRanges: *const VkImageSubresourceRange, ) -> Result<(), VkError>
Source§fn vkCmdClearAttachments(
&self,
commandBuffer: *const VkCommandBuffer_T,
attachmentCount: u32,
pAttachments: *const VkClearAttachment,
rectCount: u32,
pRects: *const VkClearRect,
) -> Result<(), VkError>
fn vkCmdClearAttachments( &self, commandBuffer: *const VkCommandBuffer_T, attachmentCount: u32, pAttachments: *const VkClearAttachment, rectCount: u32, pRects: *const VkClearRect, ) -> Result<(), VkError>
Source§fn vkCmdResolveImage(
&self,
commandBuffer: *const VkCommandBuffer_T,
srcImage: *const VkImage_T,
srcImageLayout: VkImageLayout,
dstImage: *const VkImage_T,
dstImageLayout: VkImageLayout,
regionCount: u32,
pRegions: *const VkImageResolve,
) -> Result<(), VkError>
fn vkCmdResolveImage( &self, commandBuffer: *const VkCommandBuffer_T, srcImage: *const VkImage_T, srcImageLayout: VkImageLayout, dstImage: *const VkImage_T, dstImageLayout: VkImageLayout, regionCount: u32, pRegions: *const VkImageResolve, ) -> Result<(), VkError>
Source§fn vkCmdSetEvent(
&self,
commandBuffer: *const VkCommandBuffer_T,
event: *const VkEvent_T,
stageMask: u32,
) -> Result<(), VkError>
fn vkCmdSetEvent( &self, commandBuffer: *const VkCommandBuffer_T, event: *const VkEvent_T, stageMask: u32, ) -> Result<(), VkError>
Source§fn vkCmdResetEvent(
&self,
commandBuffer: *const VkCommandBuffer_T,
event: *const VkEvent_T,
stageMask: u32,
) -> Result<(), VkError>
fn vkCmdResetEvent( &self, commandBuffer: *const VkCommandBuffer_T, event: *const VkEvent_T, stageMask: u32, ) -> Result<(), VkError>
Source§fn vkCmdWaitEvents(
&self,
commandBuffer: *const VkCommandBuffer_T,
eventCount: u32,
pEvents: *const *const VkEvent_T,
srcStageMask: u32,
dstStageMask: u32,
memoryBarrierCount: u32,
pMemoryBarriers: *const VkMemoryBarrier,
bufferMemoryBarrierCount: u32,
pBufferMemoryBarriers: *const VkBufferMemoryBarrier,
imageMemoryBarrierCount: u32,
pImageMemoryBarriers: *const VkImageMemoryBarrier,
) -> Result<(), VkError>
fn vkCmdWaitEvents( &self, commandBuffer: *const VkCommandBuffer_T, eventCount: u32, pEvents: *const *const VkEvent_T, srcStageMask: u32, dstStageMask: u32, memoryBarrierCount: u32, pMemoryBarriers: *const VkMemoryBarrier, bufferMemoryBarrierCount: u32, pBufferMemoryBarriers: *const VkBufferMemoryBarrier, imageMemoryBarrierCount: u32, pImageMemoryBarriers: *const VkImageMemoryBarrier, ) -> Result<(), VkError>
Source§fn vkCmdPipelineBarrier(
&self,
commandBuffer: *const VkCommandBuffer_T,
srcStageMask: u32,
dstStageMask: u32,
dependencyFlags: u32,
memoryBarrierCount: u32,
pMemoryBarriers: *const VkMemoryBarrier,
bufferMemoryBarrierCount: u32,
pBufferMemoryBarriers: *const VkBufferMemoryBarrier,
imageMemoryBarrierCount: u32,
pImageMemoryBarriers: *const VkImageMemoryBarrier,
) -> Result<(), VkError>
fn vkCmdPipelineBarrier( &self, commandBuffer: *const VkCommandBuffer_T, srcStageMask: u32, dstStageMask: u32, dependencyFlags: u32, memoryBarrierCount: u32, pMemoryBarriers: *const VkMemoryBarrier, bufferMemoryBarrierCount: u32, pBufferMemoryBarriers: *const VkBufferMemoryBarrier, imageMemoryBarrierCount: u32, pImageMemoryBarriers: *const VkImageMemoryBarrier, ) -> Result<(), VkError>
Source§fn vkCmdBeginQuery(
&self,
commandBuffer: *const VkCommandBuffer_T,
queryPool: *const VkQueryPool_T,
query: u32,
flags: u32,
) -> Result<(), VkError>
fn vkCmdBeginQuery( &self, commandBuffer: *const VkCommandBuffer_T, queryPool: *const VkQueryPool_T, query: u32, flags: u32, ) -> Result<(), VkError>
Source§fn vkCmdEndQuery(
&self,
commandBuffer: *const VkCommandBuffer_T,
queryPool: *const VkQueryPool_T,
query: u32,
) -> Result<(), VkError>
fn vkCmdEndQuery( &self, commandBuffer: *const VkCommandBuffer_T, queryPool: *const VkQueryPool_T, query: u32, ) -> Result<(), VkError>
Source§fn vkCmdResetQueryPool(
&self,
commandBuffer: *const VkCommandBuffer_T,
queryPool: *const VkQueryPool_T,
firstQuery: u32,
queryCount: u32,
) -> Result<(), VkError>
fn vkCmdResetQueryPool( &self, commandBuffer: *const VkCommandBuffer_T, queryPool: *const VkQueryPool_T, firstQuery: u32, queryCount: u32, ) -> Result<(), VkError>
Source§fn vkCmdWriteTimestamp(
&self,
commandBuffer: *const VkCommandBuffer_T,
pipelineStage: VkPipelineStageFlagBits,
queryPool: *const VkQueryPool_T,
query: u32,
) -> Result<(), VkError>
fn vkCmdWriteTimestamp( &self, commandBuffer: *const VkCommandBuffer_T, pipelineStage: VkPipelineStageFlagBits, queryPool: *const VkQueryPool_T, query: u32, ) -> Result<(), VkError>
Source§fn vkCmdCopyQueryPoolResults(
&self,
commandBuffer: *const VkCommandBuffer_T,
queryPool: *const VkQueryPool_T,
firstQuery: u32,
queryCount: u32,
dstBuffer: *const VkBuffer_T,
dstOffset: u64,
stride: u64,
flags: u32,
) -> Result<(), VkError>
fn vkCmdCopyQueryPoolResults( &self, commandBuffer: *const VkCommandBuffer_T, queryPool: *const VkQueryPool_T, firstQuery: u32, queryCount: u32, dstBuffer: *const VkBuffer_T, dstOffset: u64, stride: u64, flags: u32, ) -> Result<(), VkError>
Source§fn vkCmdPushConstants(
&self,
commandBuffer: *const VkCommandBuffer_T,
layout: *const VkPipelineLayout_T,
stageFlags: u32,
offset: u32,
size: u32,
pValues: *const c_void,
) -> Result<(), VkError>
fn vkCmdPushConstants( &self, commandBuffer: *const VkCommandBuffer_T, layout: *const VkPipelineLayout_T, stageFlags: u32, offset: u32, size: u32, pValues: *const c_void, ) -> Result<(), VkError>
Source§fn vkCmdBeginRenderPass(
&self,
commandBuffer: *const VkCommandBuffer_T,
pRenderPassBegin: *const VkRenderPassBeginInfo,
contents: VkSubpassContents,
) -> Result<(), VkError>
fn vkCmdBeginRenderPass( &self, commandBuffer: *const VkCommandBuffer_T, pRenderPassBegin: *const VkRenderPassBeginInfo, contents: VkSubpassContents, ) -> Result<(), VkError>
Source§fn vkCmdNextSubpass(
&self,
commandBuffer: *const VkCommandBuffer_T,
contents: VkSubpassContents,
) -> Result<(), VkError>
fn vkCmdNextSubpass( &self, commandBuffer: *const VkCommandBuffer_T, contents: VkSubpassContents, ) -> Result<(), VkError>
Source§fn vkCmdEndRenderPass(
&self,
commandBuffer: *const VkCommandBuffer_T,
) -> Result<(), VkError>
fn vkCmdEndRenderPass( &self, commandBuffer: *const VkCommandBuffer_T, ) -> Result<(), VkError>
Source§fn vkCmdExecuteCommands(
&self,
commandBuffer: *const VkCommandBuffer_T,
commandBufferCount: u32,
pCommandBuffers: *const *const VkCommandBuffer_T,
) -> Result<(), VkError>
fn vkCmdExecuteCommands( &self, commandBuffer: *const VkCommandBuffer_T, commandBufferCount: u32, pCommandBuffers: *const *const VkCommandBuffer_T, ) -> Result<(), VkError>
impl Copy for VulkanVersion10
Auto Trait Implementations§
impl Freeze for VulkanVersion10
impl RefUnwindSafe for VulkanVersion10
impl Send for VulkanVersion10
impl Sync for VulkanVersion10
impl Unpin for VulkanVersion10
impl UnwindSafe for VulkanVersion10
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> FmtForward for T
impl<T> FmtForward for T
Source§fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
Causes
self to use its Binary implementation when Debug-formatted.Source§fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
Causes
self to use its Display implementation when
Debug-formatted.Source§fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
Causes
self to use its LowerExp implementation when
Debug-formatted.Source§fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
Causes
self to use its LowerHex implementation when
Debug-formatted.Source§fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
Causes
self to use its Octal implementation when Debug-formatted.Source§fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
Causes
self to use its Pointer implementation when
Debug-formatted.Source§fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
Causes
self to use its UpperExp implementation when
Debug-formatted.Source§fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
Causes
self to use its UpperHex implementation when
Debug-formatted.Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> Pipe for Twhere
T: ?Sized,
impl<T> Pipe for Twhere
T: ?Sized,
Source§fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
Pipes by value. This is generally the method you want to use. Read more
Source§fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
Borrows
self and passes that borrow into the pipe function. Read moreSource§fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
Mutably borrows
self and passes that borrow into the pipe function. Read moreSource§fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
Source§fn pipe_borrow_mut<'a, B, R>(
&'a mut self,
func: impl FnOnce(&'a mut B) -> R,
) -> R
fn pipe_borrow_mut<'a, B, R>( &'a mut self, func: impl FnOnce(&'a mut B) -> R, ) -> R
Source§fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
Borrows
self, then passes self.as_ref() into the pipe function.Source§fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
Mutably borrows
self, then passes self.as_mut() into the pipe
function.Source§fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
Borrows
self, then passes self.deref() into the pipe function.Source§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<R, P> ReadPrimitive<R> for P
impl<R, P> ReadPrimitive<R> for P
Source§fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
Read this value from the supplied reader. Same as
ReadEndian::read_from_little_endian().Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.Source§impl<T> Tap for T
impl<T> Tap for T
Source§fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
Immutable access to the
Borrow<B> of a value. Read moreSource§fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
Mutable access to the
BorrowMut<B> of a value. Read moreSource§fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
Immutable access to the
AsRef<R> view of a value. Read moreSource§fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
Mutable access to the
AsMut<R> view of a value. Read moreSource§fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
Immutable access to the
Deref::Target of a value. Read moreSource§fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
Mutable access to the
Deref::Target of a value. Read moreSource§fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
Calls
.tap() only in debug builds, and is erased in release builds.Source§fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
Calls
.tap_mut() only in debug builds, and is erased in release
builds.Source§fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
Calls
.tap_borrow() only in debug builds, and is erased in release
builds.Source§fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
Calls
.tap_borrow_mut() only in debug builds, and is erased in release
builds.Source§fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
Calls
.tap_ref() only in debug builds, and is erased in release
builds.Source§fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
Calls
.tap_ref_mut() only in debug builds, and is erased in release
builds.Source§fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
Calls
.tap_deref() only in debug builds, and is erased in release
builds.