pub struct NativeLineEditFieldsOffsets {
pub cached_rendering_data: FieldOffset<NativeLineEdit, CachedRenderingData, AllowPin>,
pub native_padding_left: FieldOffset<NativeLineEdit, Property<LogicalLength>, AllowPin>,
pub native_padding_right: FieldOffset<NativeLineEdit, Property<LogicalLength>, AllowPin>,
pub native_padding_top: FieldOffset<NativeLineEdit, Property<LogicalLength>, AllowPin>,
pub native_padding_bottom: FieldOffset<NativeLineEdit, Property<LogicalLength>, AllowPin>,
pub has_focus: FieldOffset<NativeLineEdit, Property<bool>, AllowPin>,
pub enabled: FieldOffset<NativeLineEdit, Property<bool>, AllowPin>,
pub input_type: FieldOffset<NativeLineEdit, Property<InputType>, AllowPin>,
/* private fields */
}
Expand description
Helper struct containing the offsets of the fields of the struct NativeLineEdit
Generated from the #[derive(FieldOffsets)]
macro from the const-field-offset
crate
Fields§
§cached_rendering_data: FieldOffset<NativeLineEdit, CachedRenderingData, AllowPin>
§native_padding_left: FieldOffset<NativeLineEdit, Property<LogicalLength>, AllowPin>
§native_padding_right: FieldOffset<NativeLineEdit, Property<LogicalLength>, AllowPin>
§native_padding_top: FieldOffset<NativeLineEdit, Property<LogicalLength>, AllowPin>
§native_padding_bottom: FieldOffset<NativeLineEdit, Property<LogicalLength>, AllowPin>
§has_focus: FieldOffset<NativeLineEdit, Property<bool>, AllowPin>
§enabled: FieldOffset<NativeLineEdit, Property<bool>, AllowPin>
§input_type: FieldOffset<NativeLineEdit, Property<InputType>, AllowPin>
Auto Trait Implementations§
impl Freeze for NativeLineEditFieldsOffsets
impl !RefUnwindSafe for NativeLineEditFieldsOffsets
impl Send for NativeLineEditFieldsOffsets
impl !Sync for NativeLineEditFieldsOffsets
impl !Unpin for NativeLineEditFieldsOffsets
impl UnwindSafe for NativeLineEditFieldsOffsets
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