Trait vulkano::VulkanObject

source ·
pub unsafe trait VulkanObject {
    type Handle: Handle;

    fn handle(&self) -> Self::Handle;
}
Expand description

Gives access to the internal identifier of an object.

Required Associated Types

The type of the object.

Required Methods

Returns the raw Vulkan handle of the object.

Implementors