Trait AnyRenderPassCreateInfo

Source
pub trait AnyRenderPassCreateInfo {
    // Required method
    fn execute(
        &self,
        device: &(impl Device + ?Sized),
        allocation_callbacks: Option<&VkAllocationCallbacks>,
    ) -> Result<VkRenderPass>;
}

Required Methods§

Source

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.

Implementors§