Struct pixel_widgets::draw::DrawList[][src]

pub struct DrawList {
    pub updates: Vec<Update>,
    pub vertices: Vec<Vertex>,
    pub commands: Vec<Command>,
}
Expand description

A collection of data needed to render the ui.

Fields

updates: Vec<Update>

A list of texture updates that need to be uploaded before rendering.

vertices: Vec<Vertex>

The vertex buffer used for this frame.

commands: Vec<Command>

A list of draw commands that use the vertices buffer.

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

Performs the conversion.

Performs the conversion.

The alignment of pointer.

The type for initializers.

Initializes a with the given initializer. Read more

Dereferences the given pointer. Read more

Mutably dereferences the given pointer. Read more

Drops the object pointed to by the given pointer. Read more

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.