Trait vulkano::VulkanObject

source ·
pub unsafe trait VulkanObject {
    type Object: VulkanHandle;

    const TYPE: DebugReportObjectTypeEXT;

    fn internal_object(&self) -> Self::Object;
}
Expand description

Gives access to the internal identifier of an object.

Required Associated Types

The type of the object.

Required Associated Constants

The DebugReportObjectTypeEXT of the internal Vulkan handle.

Required Methods

Returns a reference to the object.

Implementors