Struct conrod::widget::primitive::text::State[][src]

pub struct State {
    pub string: String,
    pub line_infos: Vec<Info>,
}

The state to be stored between updates for the Text.

Fields

An owned version of the string.

The indices and width for each line of text within the string.

Trait Implementations

impl Clone for State
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for State
[src]

Formats the value using the given formatter. Read more

impl PartialEq for State
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

impl Send for State

impl Sync for State