[][src]Trait vulkano::SynchronizedVulkanObject

pub unsafe trait SynchronizedVulkanObject {
    type Object: VulkanHandle;
    fn internal_object_guard(&self) -> MutexGuard<'_, Self::Object>;
}
[]

Gives access to the internal identifier of an object.

Associated Types

type Object: VulkanHandle[]

The type of the object.

Required methods

fn internal_object_guard(&self) -> MutexGuard<'_, Self::Object>[]

Returns a reference to the object.

Implementors

impl SynchronizedVulkanObject for Queue[src][+]