pub struct NativeComboBoxFieldsOffsets {
pub enabled: FieldOffset<NativeComboBox, Property<bool>, AllowPin>,
pub has_focus: FieldOffset<NativeComboBox, Property<bool>, AllowPin>,
pub pressed: FieldOffset<NativeComboBox, Property<bool>, AllowPin>,
pub has_hover: FieldOffset<NativeComboBox, Property<bool>, AllowPin>,
pub is_open: FieldOffset<NativeComboBox, Property<bool>, AllowPin>,
pub current_value: FieldOffset<NativeComboBox, Property<SharedString>, AllowPin>,
pub cached_rendering_data: FieldOffset<NativeComboBox, CachedRenderingData, AllowPin>,
/* private fields */
}
Expand description
Helper struct containing the offsets of the fields of the struct NativeComboBox
Generated from the #[derive(FieldOffsets)]
macro from the const-field-offset
crate
Fields§
§enabled: FieldOffset<NativeComboBox, Property<bool>, AllowPin>
§has_focus: FieldOffset<NativeComboBox, Property<bool>, AllowPin>
§pressed: FieldOffset<NativeComboBox, Property<bool>, AllowPin>
§has_hover: FieldOffset<NativeComboBox, Property<bool>, AllowPin>
§is_open: FieldOffset<NativeComboBox, Property<bool>, AllowPin>
§current_value: FieldOffset<NativeComboBox, Property<SharedString>, AllowPin>
§cached_rendering_data: FieldOffset<NativeComboBox, CachedRenderingData, AllowPin>
Auto Trait Implementations§
impl Freeze for NativeComboBoxFieldsOffsets
impl !RefUnwindSafe for NativeComboBoxFieldsOffsets
impl Send for NativeComboBoxFieldsOffsets
impl !Sync for NativeComboBoxFieldsOffsets
impl !Unpin for NativeComboBoxFieldsOffsets
impl UnwindSafe for NativeComboBoxFieldsOffsets
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more