Struct conrod_core::render::Primitives[][src]

pub struct Primitives<'a> { /* fields omitted */ }
Expand description

An iterator-like type that yields a reference to each primitive in order of depth for rendering.

This type is produced by the Ui::draw and Ui::draw_if_changed methods.

This type borrows data from the Ui in order to lazily produce each Primitive. If you require ownership over the sequence of primitives, consider using the OwnedPrimitives type. The OwnedPrimitives type can be produced by calling the Primitives::owned method.

Implementations

Constructor for the Primitives iterator.

Yield the next Primitive for rendering.

Collect the Primitives list into an owned collection.

This is useful for sending Ui rendering data across threads in an efficient manner.

Trait Implementations

Yield the next Primitive in order of depth, bottom to top.

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 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.