Trait vulkano::VulkanObject [] [src]

pub unsafe trait VulkanObject {
    type Object;
    fn internal_object(&self) -> Self::Object;
}

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