Trait vulkano::command_buffer::cb::AddCommand [] [src]

pub unsafe trait AddCommand<C> {
    type Out;
    fn add(self, cmd: C) -> Result<Self::Out, CommandAddError>;
}

Adds a command to a command buffer builder.

Associated Types

The new command buffer builder type.

Required Methods

Adds the command. This takes ownership of the builder and returns a new builder with the command appended at the end of it.

Implementors