#[repr(C)]pub struct sapp_event {Show 19 fields
pub frame_count: u64,
pub type_: sapp_event_type,
pub key_code: sapp_keycode,
pub char_code: u32,
pub key_repeat: bool,
pub modifiers: u32,
pub mouse_button: sapp_mousebutton,
pub mouse_x: f32,
pub mouse_y: f32,
pub mouse_dx: f32,
pub mouse_dy: f32,
pub scroll_x: f32,
pub scroll_y: f32,
pub num_touches: c_int,
pub touches: [sapp_touchpoint; 8],
pub window_width: c_int,
pub window_height: c_int,
pub framebuffer_width: c_int,
pub framebuffer_height: c_int,
}
Fields§
§frame_count: u64
§type_: sapp_event_type
§key_code: sapp_keycode
§char_code: u32
§key_repeat: bool
§modifiers: u32
§mouse_x: f32
§mouse_y: f32
§mouse_dx: f32
§mouse_dy: f32
§scroll_x: f32
§scroll_y: f32
§num_touches: c_int
§touches: [sapp_touchpoint; 8]
§window_width: c_int
§window_height: c_int
§framebuffer_width: c_int
§framebuffer_height: c_int
Trait Implementations§
Source§impl Clone for sapp_event
impl Clone for sapp_event
Source§fn clone(&self) -> sapp_event
fn clone(&self) -> sapp_event
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 sapp_event
impl Debug for sapp_event
impl Copy for sapp_event
Auto Trait Implementations§
impl Freeze for sapp_event
impl RefUnwindSafe for sapp_event
impl Send for sapp_event
impl Sync for sapp_event
impl Unpin for sapp_event
impl UnwindSafe for sapp_event
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