Enum vulkano::framebuffer::SubpassContents [] [src]

#[repr(u32)]
pub enum SubpassContents { Inline, SecondaryCommandBuffers, }

Describes what a subpass in a command buffer will contain.

Variants

The subpass will only directly contain commands.

The subpass will only contain secondary command buffers invocations.

Trait Implementations

impl Debug for SubpassContents
[src]

[src]

Formats the value using the given formatter. Read more

impl Copy for SubpassContents
[src]

impl Clone for SubpassContents
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq for SubpassContents
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

1.0.0
[src]

This method tests for !=.

impl Eq for SubpassContents
[src]

Auto Trait Implementations