pub struct SwipeGestureHandlerFieldsOffsets {
pub enabled: FieldOffset<SwipeGestureHandler, Property<bool>, AllowPin>,
pub handle_swipe_left: FieldOffset<SwipeGestureHandler, Property<bool>, AllowPin>,
pub handle_swipe_right: FieldOffset<SwipeGestureHandler, Property<bool>, AllowPin>,
pub handle_swipe_up: FieldOffset<SwipeGestureHandler, Property<bool>, AllowPin>,
pub handle_swipe_down: FieldOffset<SwipeGestureHandler, Property<bool>, AllowPin>,
pub moved: FieldOffset<SwipeGestureHandler, Callback<VoidArg>, AllowPin>,
pub swiped: FieldOffset<SwipeGestureHandler, Callback<VoidArg>, AllowPin>,
pub cancelled: FieldOffset<SwipeGestureHandler, Callback<VoidArg>, AllowPin>,
pub pressed_position: FieldOffset<SwipeGestureHandler, Property<LogicalPosition>, AllowPin>,
pub current_position: FieldOffset<SwipeGestureHandler, Property<LogicalPosition>, AllowPin>,
pub swiping: FieldOffset<SwipeGestureHandler, Property<bool>, AllowPin>,
pub cached_rendering_data: FieldOffset<SwipeGestureHandler, CachedRenderingData, AllowPin>,
/* private fields */
}
Expand description
Helper struct containing the offsets of the fields of the struct SwipeGestureHandler
Generated from the #[derive(FieldOffsets)]
macro from the const-field-offset
crate
Fields§
§enabled: FieldOffset<SwipeGestureHandler, Property<bool>, AllowPin>
§handle_swipe_left: FieldOffset<SwipeGestureHandler, Property<bool>, AllowPin>
§handle_swipe_right: FieldOffset<SwipeGestureHandler, Property<bool>, AllowPin>
§handle_swipe_up: FieldOffset<SwipeGestureHandler, Property<bool>, AllowPin>
§handle_swipe_down: FieldOffset<SwipeGestureHandler, Property<bool>, AllowPin>
§moved: FieldOffset<SwipeGestureHandler, Callback<VoidArg>, AllowPin>
§swiped: FieldOffset<SwipeGestureHandler, Callback<VoidArg>, AllowPin>
§cancelled: FieldOffset<SwipeGestureHandler, Callback<VoidArg>, AllowPin>
§pressed_position: FieldOffset<SwipeGestureHandler, Property<LogicalPosition>, AllowPin>
§current_position: FieldOffset<SwipeGestureHandler, Property<LogicalPosition>, AllowPin>
§swiping: FieldOffset<SwipeGestureHandler, Property<bool>, AllowPin>
§cached_rendering_data: FieldOffset<SwipeGestureHandler, CachedRenderingData, AllowPin>
Auto Trait Implementations§
impl Freeze for SwipeGestureHandlerFieldsOffsets
impl !RefUnwindSafe for SwipeGestureHandlerFieldsOffsets
impl !Send for SwipeGestureHandlerFieldsOffsets
impl !Sync for SwipeGestureHandlerFieldsOffsets
impl !Unpin for SwipeGestureHandlerFieldsOffsets
impl !UnwindSafe for SwipeGestureHandlerFieldsOffsets
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