Struct conrod::render::Primitives [] [src]

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

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.

Methods

impl<'a> Primitives<'a>
[src]

[src]

Constructor for the Primitives iterator.

[src]

Yield the next Primitive for rendering.

[src]

Collect the Primitives list into an owned collection.

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

Trait Implementations

impl<'a> PrimitiveWalker for Primitives<'a>
[src]

[src]

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