pub trait VulkanCommandPoolExt: IsA<VulkanCommandPool> + 'static {
// Provided methods
fn create(&self) -> Result<VulkanCommandBuffer, Error> { ... }
fn queue(&self) -> VulkanQueue { ... }
}Provided Methods§
fn create(&self) -> Result<VulkanCommandBuffer, Error>
fn queue(&self) -> VulkanQueue
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".