pub trait VulkanQueueExtManual: IsA<VulkanQueue> + 'static {
// Provided method
fn submit_lock<'a>(&'a self) -> VulkanQueueSubmitGuard<'a> { ... }
}Provided Methods§
Sourcefn submit_lock<'a>(&'a self) -> VulkanQueueSubmitGuard<'a>
fn submit_lock<'a>(&'a self) -> VulkanQueueSubmitGuard<'a>
Locks the vulkan queue for submission. A struct similar to MutexGuard is retured that unlocks the queue once dropped.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".