pub trait AnyRenderPassCreateInfo {
// Required method
fn execute(
&self,
device: &(impl Device + ?Sized),
allocation_callbacks: Option<&VkAllocationCallbacks>,
) -> Result<VkRenderPass>;
}Required Methods§
fn execute( &self, device: &(impl Device + ?Sized), allocation_callbacks: Option<&VkAllocationCallbacks>, ) -> Result<VkRenderPass>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.