#[repr(C)]pub struct SDL_MouseMotionEvent {
pub type_: Uint32,
pub timestamp: Uint32,
pub windowID: Uint32,
pub which: Uint32,
pub state: Uint32,
pub x: Sint32,
pub y: Sint32,
pub xrel: Sint32,
pub yrel: Sint32,
}Fields§
§type_: Uint32§timestamp: Uint32§windowID: Uint32§which: Uint32§state: Uint32§x: Sint32§y: Sint32§xrel: Sint32§yrel: Sint32Trait Implementations§
Source§impl Clone for SDL_MouseMotionEvent
impl Clone for SDL_MouseMotionEvent
Source§fn clone(&self) -> SDL_MouseMotionEvent
fn clone(&self) -> SDL_MouseMotionEvent
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 SDL_MouseMotionEvent
impl Debug for SDL_MouseMotionEvent
impl Copy for SDL_MouseMotionEvent
Auto Trait Implementations§
impl Freeze for SDL_MouseMotionEvent
impl RefUnwindSafe for SDL_MouseMotionEvent
impl Send for SDL_MouseMotionEvent
impl Sync for SDL_MouseMotionEvent
impl Unpin for SDL_MouseMotionEvent
impl UnwindSafe for SDL_MouseMotionEvent
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