Struct iui::controls::Control [] [src]

pub struct Control { /* fields omitted */ }

A generic UI control. Any UI control can be turned into this type.

Note that Control and all specific control types are references whose memory is owned by the UI library.

Methods

impl Control
[src]

[src]

Creates a new Control object from an existing *mut uiControl.

[src]

Returns the underlying *mut uiControl.

[src]

Destroys a control. Any use of the control after this is use-after-free; therefore, this is marked unsafe.

Trait Implementations

impl Into<Control> for Label
[src]

[src]

Performs the conversion.

impl Into<Control> for Button
[src]

[src]

Performs the conversion.

impl Into<Control> for Window
[src]

[src]

Performs the conversion.

impl Into<Control> for VerticalBox
[src]

[src]

Performs the conversion.

impl Into<Control> for HorizontalBox
[src]

[src]

Performs the conversion.

impl Into<Control> for TabGroup
[src]

[src]

Performs the conversion.

impl Into<Control> for Group
[src]

[src]

Performs the conversion.

impl Into<Control> for HorizontalSeparator
[src]

[src]

Performs the conversion.

impl Into<Control> for Spacer
[src]

[src]

Performs the conversion.

impl Into<Control> for LayoutGrid
[src]

[src]

Performs the conversion.

impl Into<Control> for Spinbox
[src]

[src]

Performs the conversion.

impl Into<Control> for Slider
[src]

[src]

Performs the conversion.

impl Into<Control> for Entry
[src]

[src]

Performs the conversion.

impl Into<Control> for MultilineEntry
[src]

[src]

Performs the conversion.

impl Into<Control> for Combobox
[src]

[src]

Performs the conversion.

impl Into<Control> for Checkbox
[src]

[src]

Performs the conversion.

impl Drop for Control
[src]

[src]

Executes the destructor for this type. Read more

impl Clone for Control
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl !Send for Control

impl !Sync for Control