#[repr(C)]pub struct CbfMouseWheelEvent {Show 16 fields
pub tab_id: u64,
pub modifiers: u32,
pub position_in_widget_x: f32,
pub position_in_widget_y: f32,
pub position_in_screen_x: f32,
pub position_in_screen_y: f32,
pub movement_x: f32,
pub movement_y: f32,
pub is_raw_movement_event: bool,
pub delta_x: f32,
pub delta_y: f32,
pub wheel_ticks_x: f32,
pub wheel_ticks_y: f32,
pub phase: u32,
pub momentum_phase: u32,
pub delta_units: u8,
}Fields§
§tab_id: u64§modifiers: u32§position_in_widget_x: f32§position_in_widget_y: f32§position_in_screen_x: f32§position_in_screen_y: f32§movement_x: f32§movement_y: f32§is_raw_movement_event: bool§delta_x: f32§delta_y: f32§wheel_ticks_x: f32§wheel_ticks_y: f32§phase: u32§momentum_phase: u32§delta_units: u8Trait Implementations§
Source§impl Clone for CbfMouseWheelEvent
impl Clone for CbfMouseWheelEvent
Source§fn clone(&self) -> CbfMouseWheelEvent
fn clone(&self) -> CbfMouseWheelEvent
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CbfMouseWheelEvent
impl Debug for CbfMouseWheelEvent
Source§impl Default for CbfMouseWheelEvent
impl Default for CbfMouseWheelEvent
Source§fn default() -> CbfMouseWheelEvent
fn default() -> CbfMouseWheelEvent
Returns the “default value” for a type. Read more
impl Copy for CbfMouseWheelEvent
Auto Trait Implementations§
impl Freeze for CbfMouseWheelEvent
impl RefUnwindSafe for CbfMouseWheelEvent
impl Send for CbfMouseWheelEvent
impl Sync for CbfMouseWheelEvent
impl Unpin for CbfMouseWheelEvent
impl UnsafeUnpin for CbfMouseWheelEvent
impl UnwindSafe for CbfMouseWheelEvent
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