Struct patternfly_dioxus::dioxus_elements::on::PointerData
[−]pub struct PointerData {Show 22 fields
pub alt_key: bool,
pub button: i16,
pub buttons: u16,
pub client_x: i32,
pub client_y: i32,
pub ctrl_key: bool,
pub meta_key: bool,
pub page_x: i32,
pub page_y: i32,
pub screen_x: i32,
pub screen_y: i32,
pub shift_key: bool,
pub pointer_id: i32,
pub width: i32,
pub height: i32,
pub pressure: f32,
pub tangential_pressure: f32,
pub tilt_x: i32,
pub tilt_y: i32,
pub twist: i32,
pub pointer_type: String,
pub is_primary: bool,
}Fields
alt_key: boolclient_x: i32client_y: i32ctrl_key: boolmeta_key: boolpage_x: i32page_y: i32screen_x: i32screen_y: i32shift_key: boolpointer_id: i32width: i32height: i32pressure: f32tangential_pressure: f32tilt_x: i32tilt_y: i32twist: i32pointer_type: Stringis_primary: boolTrait Implementations
impl Clone for PointerData
impl Clone for PointerData
fn clone(&self) -> PointerData
fn clone(&self) -> PointerData
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Debug for PointerData
impl Debug for PointerData
impl From<&Event> for PointerData
impl From<&Event> for PointerData
fn from(e: &Event) -> PointerData
fn from(e: &Event) -> PointerData
Converts to this type from the input type.
impl From<&PointerEvent> for PointerData
impl From<&PointerEvent> for PointerData
fn from(e: &PointerEvent) -> PointerData
fn from(e: &PointerEvent) -> PointerData
Converts to this type from the input type.
impl From<Event> for PointerData
impl From<Event> for PointerData
fn from(e: Event) -> PointerData
fn from(e: Event) -> PointerData
Converts to this type from the input type.
Auto Trait Implementations
impl RefUnwindSafe for PointerData
impl Send for PointerData
impl Sync for PointerData
impl Unpin for PointerData
impl UnwindSafe for PointerData
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more