Trait Vulkan Queue Ext
Source pub trait VulkanQueueExt: IsA<VulkanQueue> + 'static {
// Provided methods
fn create_command_pool(&self) -> Result<VulkanCommandPool, Error> { ... }
fn device(&self) -> Option<VulkanDevice> { ... }
}Expand description
Provided Methods§
Sourcefn create_command_pool(&self) -> Result<VulkanCommandPool, Error>
fn create_command_pool(&self) -> Result<VulkanCommandPool, Error>
§Returns
a new VulkanCommandPool or None
Sourcefn device(&self) -> Option<VulkanDevice>
fn device(&self) -> Option<VulkanDevice>
§Returns
the VulkanDevice for self
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".