pub struct Pointer {
pub position: Point,
pub hovering: Option<ViewId>,
/* private fields */
}
Expand description
The state of a pointer.
Fields§
§position: Point
The position of the pointer.
You probably don’t want to set this directly.
hovering: Option<ViewId>
The view the pointer is over.
You probably don’t want to set this directly.
Implementations§
Source§impl Pointer
impl Pointer
Sourcepub fn is_pressed(&self, button: PointerButton) -> bool
pub fn is_pressed(&self, button: PointerButton) -> bool
Get whether a button is pressed.
Sourcepub fn press(&mut self, button: PointerButton)
pub fn press(&mut self, button: PointerButton)
Press a button.
This is rarely what you want to do, do not use this unless you really know what you are doing.
Sourcepub fn release(&mut self, button: PointerButton) -> bool
pub fn release(&mut self, button: PointerButton) -> bool
Release a button, returning whether the button was clicked.
This is rarely what you want to do, do not use this unless you really know what you are doing.
Trait Implementations§
impl StructuralPartialEq for Pointer
Auto Trait Implementations§
impl Freeze for Pointer
impl RefUnwindSafe for Pointer
impl Send for Pointer
impl Sync for Pointer
impl Unpin for Pointer
impl UnwindSafe for Pointer
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