Trait dacite::VulkanObject [] [src]

pub trait VulkanObject: Sized + Send + Sync + Clone + Debug {
    type NativeVulkanObject;
    fn as_native_vulkan_object(&self) -> Self::NativeVulkanObject;
    fn try_destroy(self) -> Result<(), TryDestroyError<Self>>;
}

Associated Types

Required Methods

Implementors