[][src]Struct native_windows_gui::ComboBoxT

pub struct ComboBoxT<D: Clone + Display + 'static, ID: Hash + Clone, S: Clone + Into<String>> {
    pub collection: Vec<D>,
    pub position: (i32, i32),
    pub size: (u32, u32),
    pub visible: bool,
    pub disabled: bool,
    pub placeholder: Option<S>,
    pub parent: ID,
    pub font: Option<ID>,
}

Template that creates a combobox control

Available events:
Event::Destroyed, Event::SelectionChanged, Event::DoubleClick, Event::Focus, Event::Moved, Event::Resized, Event::Raw

Members:
collection: Item collection of the combobox. The item type must implement Display
position: The start position of the combobox
size: The start size of the combobox
visible: If the combobox should be visible to the user
disabled: If the user can or can't use the combobox
parent: The combobox parent
font: The combobox font. If None, use the system default

Fields

collection: Vec<D>position: (i32, i32)size: (u32, u32)visible: booldisabled: boolplaceholder: Option<S>parent: IDfont: Option<ID>

Trait Implementations

impl<D: Clone + Display + 'static, ID: Hash + Clone, S: Clone + Into<String>> ControlT<ID> for ComboBoxT<D, ID, S>[src]

impl<D: Clone + Clone + Display + 'static, ID: Clone + Hash + Clone, S: Clone + Clone + Into<String>> Clone for ComboBoxT<D, ID, S>[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl<D, ID, S> Send for ComboBoxT<D, ID, S> where
    D: Send,
    ID: Send,
    S: Send

impl<D, ID, S> Sync for ComboBoxT<D, ID, S> where
    D: Sync,
    ID: Sync,
    S: Sync

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]