pub struct NativeSpinBoxFieldsOffsets {
pub enabled: FieldOffset<NativeSpinBox, Property<bool>, AllowPin>,
pub has_focus: FieldOffset<NativeSpinBox, Property<bool>, AllowPin>,
pub value: FieldOffset<NativeSpinBox, Property<i32>, AllowPin>,
pub minimum: FieldOffset<NativeSpinBox, Property<i32>, AllowPin>,
pub maximum: FieldOffset<NativeSpinBox, Property<i32>, AllowPin>,
pub step_size: FieldOffset<NativeSpinBox, Property<i32>, AllowPin>,
pub horizontal_alignment: FieldOffset<NativeSpinBox, Property<TextHorizontalAlignment>, AllowPin>,
pub cached_rendering_data: FieldOffset<NativeSpinBox, CachedRenderingData, AllowPin>,
pub edited: FieldOffset<NativeSpinBox, Callback<(i32,)>, AllowPin>,
/* private fields */
}
Expand description
Helper struct containing the offsets of the fields of the struct NativeSpinBox
Generated from the #[derive(FieldOffsets)]
macro from the const-field-offset
crate
Fields§
§enabled: FieldOffset<NativeSpinBox, Property<bool>, AllowPin>
§has_focus: FieldOffset<NativeSpinBox, Property<bool>, AllowPin>
§value: FieldOffset<NativeSpinBox, Property<i32>, AllowPin>
§minimum: FieldOffset<NativeSpinBox, Property<i32>, AllowPin>
§maximum: FieldOffset<NativeSpinBox, Property<i32>, AllowPin>
§step_size: FieldOffset<NativeSpinBox, Property<i32>, AllowPin>
§horizontal_alignment: FieldOffset<NativeSpinBox, Property<TextHorizontalAlignment>, AllowPin>
§cached_rendering_data: FieldOffset<NativeSpinBox, CachedRenderingData, AllowPin>
§edited: FieldOffset<NativeSpinBox, Callback<(i32,)>, AllowPin>
Auto Trait Implementations§
impl Freeze for NativeSpinBoxFieldsOffsets
impl !RefUnwindSafe for NativeSpinBoxFieldsOffsets
impl !Send for NativeSpinBoxFieldsOffsets
impl !Sync for NativeSpinBoxFieldsOffsets
impl !Unpin for NativeSpinBoxFieldsOffsets
impl !UnwindSafe for NativeSpinBoxFieldsOffsets
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