pub struct PointerMoveResult {
pub cursor: Option<CursorIcon>,
pub hover_id: Option<u64>,
}Expand description
Result of a pointer-move event processed by the runtime.
Fields§
§cursor: Option<CursorIcon>Updated cursor suggestion for the host.
hover_id: Option<u64>The id of the element under the pointer, if any.
Auto Trait Implementations§
impl Freeze for PointerMoveResult
impl RefUnwindSafe for PointerMoveResult
impl Send for PointerMoveResult
impl Sync for PointerMoveResult
impl Unpin for PointerMoveResult
impl UnsafeUnpin for PointerMoveResult
impl UnwindSafe for PointerMoveResult
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