Enum flo_ui::control::State [] [src]

pub enum State {
    Selected(Property),
    Badged(Property),
    Value(Property),
    Range((Property, Property)),
}

Attributes representing the state of a control

Variants

Whether or not this control is selected

Whether or not this control has a badge attached to it

The value of this control (when it is not being edited)

The range values that this control can be set to

Trait Implementations

impl Clone for State
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq for State
[src]

[src]

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

[src]

This method tests for !=.

impl Debug for State
[src]

[src]

Formats the value using the given formatter. Read more

impl Modifier<Control> for State
[src]

[src]

Modify F with self.

impl<'a> Modifier<Control> for &'a State
[src]

[src]

Modify F with self.

Auto Trait Implementations

impl Send for State

impl Sync for State