Trait Vulkan Command Pool Ext 
Source pub trait VulkanCommandPoolExt: IsA<VulkanCommandPool> + 'static {
    // Provided methods
    fn create(&self) -> Result<VulkanCommandBuffer, Error> { ... }
    fn queue(&self) -> VulkanQueue { ... }
}Expand description
Provided Methods§
Sourcefn create(&self) -> Result<VulkanCommandBuffer, Error>
 
fn create(&self) -> Result<VulkanCommandBuffer, Error>
§Returns
a new or recycled primary VulkanCommandBuffer
Sourcefn queue(&self) -> VulkanQueue
 
fn queue(&self) -> VulkanQueue
§Returns
the parent VulkanQueue for this command pool
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.