Struct conrod::UiBuilder[][src]

pub struct UiBuilder {
    pub window_dimensions: Dimensions,
    pub maybe_theme: Option<Theme>,
    pub maybe_widgets_capacity: Option<usize>,
}

A constructor type for building a Ui instance with a set of optional parameters.

Fields

The initial dimensions of the window in which the Ui exists.

The theme used to set default styling for widgets.

If this field is None when build is called, Theme::default will be used.

An estimation of the maximum number of widgets that will be used with this Ui instance.

This value is used to determine the size with which various collections should be reserved. This may make the first cycle of widget instantiations more efficient as the collections will not be required to grow dynamically. These collections include:

  • the widget graph node and edge Vecs
  • the HashSet used to track updated widgets
  • the widget DepthOrder (a kind of toposort describing the order of widgets in their rendering order).

If this field is None when build is called, these collections will be initialised with no pre-reserved size and will instead grow organically as needed.

Methods

impl UiBuilder
[src]

Begin building a new Ui instance.

Give the initial dimensions of the window within which the Ui will be instantiated as a Scalar (DPI agnostic) value.

The theme used to set default styling for widgets.

If this field is None when build is called, Theme::default will be used.

An estimation of the maximum number of widgets that will be used with this Ui instance.

This value is used to determine the size with which various collections should be reserved. This may make the first cycle of widget instantiations more efficient as the collections will not be required to grow dynamically. These collections include:

  • the widget graph node and edge Vecs
  • the HashSet used to track updated widgets
  • the widget DepthOrder (a kind of toposort describing the order of widgets in their rendering order).

If this field is None when build is called, these collections will be initialised with no pre-reserved size and will instead grow organically as required.

Build Ui from the given builder

Auto Trait Implementations

impl Send for UiBuilder

impl !Sync for UiBuilder