Trait vulkano::SynchronizedVulkanObject[][src]

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

Gives access to the internal identifier of an object.

Associated Types

The type of the object.

Required methods

Returns a reference to the object.

Implementors