pub struct DropAreaFieldsOffsets {
pub enabled: FieldOffset<DropArea, Property<bool>, AllowPin>,
pub contains_drag: FieldOffset<DropArea, Property<bool>, AllowPin>,
pub can_drop: FieldOffset<DropArea, Callback<DropEventArg, bool>, AllowPin>,
pub dropped: FieldOffset<DropArea, Callback<DropEventArg>, AllowPin>,
pub cached_rendering_data: FieldOffset<DropArea, CachedRenderingData, AllowPin>,
}
Expand description
Helper struct containing the offsets of the fields of the struct DropArea
Generated from the #[derive(FieldOffsets)]
macro from the const-field-offset
crate
Fields§
§enabled: FieldOffset<DropArea, Property<bool>, AllowPin>
§contains_drag: FieldOffset<DropArea, Property<bool>, AllowPin>
§can_drop: FieldOffset<DropArea, Callback<DropEventArg, bool>, AllowPin>
§dropped: FieldOffset<DropArea, Callback<DropEventArg>, AllowPin>
§cached_rendering_data: FieldOffset<DropArea, CachedRenderingData, AllowPin>
Auto Trait Implementations§
impl Freeze for DropAreaFieldsOffsets
impl !RefUnwindSafe for DropAreaFieldsOffsets
impl !Send for DropAreaFieldsOffsets
impl !Sync for DropAreaFieldsOffsets
impl !Unpin for DropAreaFieldsOffsets
impl !UnwindSafe for DropAreaFieldsOffsets
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