pub unsafe trait VulkanObject {
type Handle: Handle;
// Required method
fn handle(&self) -> Self::Handle;
}
Expand description
Gives access to the internal identifier of an object.
pub unsafe trait VulkanObject {
type Handle: Handle;
// Required method
fn handle(&self) -> Self::Handle;
}
Gives access to the internal identifier of an object.