#[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: c_float,
pub mouse_y: c_float,
pub mouse_dx: c_float,
pub mouse_dy: c_float,
pub scroll_x: c_float,
pub scroll_y: c_float,
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: c_float§mouse_y: c_float§mouse_dx: c_float§mouse_dy: c_float§scroll_x: c_float§scroll_y: c_float§num_touches: c_int§touches: [sapp_touchpoint; 8]§window_width: c_int§window_height: c_int§framebuffer_width: c_int§framebuffer_height: c_intTrait 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 moreimpl 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