Enum flo_ui::control::ControlType [] [src]

pub enum ControlType {
    Empty,
    Container,
    CroppingContainer,
    ScrollingContainer,
    Popup,
    Button,
    Label,
    Canvas,
    Slider,
    Rotor,
}

Possible types of control

Variants

A control that does nothing

Control that contains other controls

Control that contains other controls (and crops them to the bounds of this control)

Control that contains other controls and some scroll bars

Control that 'pops up' from its parent, usually a temporary dialog box of some description

Clickable button

Label used to display some text

Allows arbitrary rendering using a canvas resource

Allows picking a value by dragging left or right

A circular slider that represents its value by how much it is rotated

Trait Implementations

impl Clone for ControlType
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for ControlType
[src]

impl PartialEq for ControlType
[src]

[src]

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

1.0.0
[src]

This method tests for !=.

impl Eq for ControlType
[src]

impl Debug for ControlType
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for ControlType

impl Sync for ControlType