pub trait RenderPassRelation<L>:
Copy
+ Default
+ Debug
+ 'static {
// Required method
fn flags(&self) -> CommandBufferFlags;
}Expand description
Trait implemented for type-level render pass relation flags.
RenderPassContinue and OutsideRenderPass.
Required Methods§
Sourcefn flags(&self) -> CommandBufferFlags
fn flags(&self) -> CommandBufferFlags
Flags required to begin command buffer.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".