Struct sdl2_sys::SDL_DisplayEvent
source · #[repr(C)]pub struct SDL_DisplayEvent {
pub type_: Uint32,
pub timestamp: Uint32,
pub display: Uint32,
pub event: Uint8,
pub padding1: Uint8,
pub padding2: Uint8,
pub padding3: Uint8,
pub data1: Sint32,
}
Expand description
\brief Display state change event data (event.display.*)
Fields§
§type_: Uint32
< ::SDL_DISPLAYEVENT
timestamp: Uint32
< In milliseconds, populated using SDL_GetTicks()
display: Uint32
< The associated display index
event: Uint8
< ::SDL_DisplayEventID
padding1: Uint8
§padding2: Uint8
§padding3: Uint8
§data1: Sint32
< event dependent data
Trait Implementations§
source§impl Clone for SDL_DisplayEvent
impl Clone for SDL_DisplayEvent
source§fn clone(&self) -> SDL_DisplayEvent
fn clone(&self) -> SDL_DisplayEvent
Returns a copy 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 SDL_DisplayEvent
Auto Trait Implementations§
impl Freeze for SDL_DisplayEvent
impl RefUnwindSafe for SDL_DisplayEvent
impl Send for SDL_DisplayEvent
impl Sync for SDL_DisplayEvent
impl Unpin for SDL_DisplayEvent
impl UnwindSafe for SDL_DisplayEvent
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