[][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.

Loading content...

Required methods

fn internal_object_guard(&self) -> MutexGuard<Self::Object>

Returns a reference to the object.

Loading content...

Implementors

impl SynchronizedVulkanObject for Queue[src]

Loading content...