Struct conrod_core::widget::State[][src]

pub struct State<'a, T: 'a> { /* fields omitted */ }
Expand description

A wrapper around a Widget’s unique Widget::State.

This type is used to provide limited access to the Widget::State within the Widget::update method (to which it is passed via the UpdateArgs).

The type provides only two methods. One for viewing the state, the other for mutating it.

We do this so that we can keep track of whether or not the Widget::State has been mutated (using an internal has_updated flag). This allows us to know whether or not we need to re-draw the Widget, without having to compare the previous and new Widget::States.

Implementations

Mutate the internal widget state and set a flag notifying us that there has been a mutation.

If this method is not called, we assume that there has been no mutation and in turn we do not need to re-draw the Widget.

If this method is called, we assume that there has been some mutation and in turn will need to re-draw the Widget. Thus, it is recommended that you only call this method if you need to update the unique state in some way.

Trait Implementations

The resulting type after dereferencing.

Dereferences the value.

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.