[][src]Trait vulkano::SynchronizedVulkanObject

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

Gives access to the internal identifier of an object.

Associated Types

type Object: VulkanHandle[src]

The type of the object.

Loading content...

Required methods

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

Returns a reference to the object.

Loading content...

Implementors

impl SynchronizedVulkanObject for Queue[src]

Loading content...