Trait vulkano::command_buffer::CommandBufferBuild [] [src]

pub unsafe trait CommandBufferBuild {
    type Out;
    type Err;
    fn build(self) -> Result<Self::Out, Self::Err>;
}

Turns a command buffer builder into a real command buffer.

Associated Types

The type of the built command buffer.

Error that can be returned when building.

Required Methods

Builds the command buffer.

Implementors