Struct sixtyfps_rendering_backend_qt::native_widgets::NativeComboBox[][src]

#[repr(C)]
pub struct NativeComboBox { pub x: Property<f32>, pub y: Property<f32>, pub width: Property<f32>, pub height: Property<f32>, pub enabled: Property<bool>, pub pressed: Property<bool>, pub is_open: Property<bool>, pub current_value: Property<SharedString>, pub cached_rendering_data: CachedRenderingData, pub open_popup: Callback<VoidArg>, }

Fields

x: Property<f32>y: Property<f32>width: Property<f32>height: Property<f32>enabled: Property<bool>pressed: Property<bool>is_open: Property<bool>current_value: Property<SharedString>cached_rendering_data: CachedRenderingDataopen_popup: Callback<VoidArg>

Implementations

impl NativeComboBox[src]

pub const FIELD_OFFSETS: NativeComboBoxFieldsOffsets[src]

Return a struct containing the offset of for the fields of this struct

impl NativeComboBox[src]

pub fn x(self: Pin<&Self>) -> f32[src]

pub fn y(self: Pin<&Self>) -> f32[src]

pub fn width(self: Pin<&Self>) -> f32[src]

pub fn height(self: Pin<&Self>) -> f32[src]

pub fn enabled(self: Pin<&Self>) -> bool[src]

pub fn pressed(self: Pin<&Self>) -> bool[src]

pub fn is_open(self: Pin<&Self>) -> bool[src]

pub fn current_value(self: Pin<&Self>) -> SharedString[src]

Trait Implementations

impl BuiltinItem for NativeComboBox[src]

impl Default for NativeComboBox[src]

impl HasStaticVTable<ItemVTable> for NativeComboBox[src]

impl Item for NativeComboBox[src]

impl ItemConsts for NativeComboBox[src]

impl<'__dummy_lifetime> Unpin for NativeComboBox where
    __MustNotImplUnpin<'__dummy_lifetime>: Unpin
[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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.