pub enum SubpassContents {
    Inline,
    SecondaryBuffers,
}
Expand description

Specifies how commands for the following renderpasses will be recorded.

Variants

Inline

Contents of the subpass will be inline in the command buffer, NOT in secondary command buffers.

SecondaryBuffers

Contents of the subpass will be in secondary command buffers, and the primary command buffer will only contain execute_command() calls until the subpass or render pass is complete.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.