pub unsafe trait InstanceOwned {
// Required method
fn instance(&self) -> &Arc<Instance>;
}
Expand description
Implemented on objects that belong to a Vulkan instance.
§Safety
instance()
must return the correct instance.
pub unsafe trait InstanceOwned {
// Required method
fn instance(&self) -> &Arc<Instance>;
}
Implemented on objects that belong to a Vulkan instance.
instance()
must return the correct instance.