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