#[repr(C)]pub struct EmscriptenFullscreenChangeEvent {
pub isFullscreen: bool,
pub fullscreenEnabled: bool,
pub nodeName: [c_char; 128],
pub id: [c_char; 128],
pub elementWidth: c_int,
pub elementHeight: c_int,
pub screenWidth: c_int,
pub screenHeight: c_int,
}
Fields§
§isFullscreen: bool
§fullscreenEnabled: bool
§nodeName: [c_char; 128]
§id: [c_char; 128]
§elementWidth: c_int
§elementHeight: c_int
§screenWidth: c_int
§screenHeight: c_int
Trait Implementations§
Source§impl Clone for EmscriptenFullscreenChangeEvent
impl Clone for EmscriptenFullscreenChangeEvent
Source§fn clone(&self) -> EmscriptenFullscreenChangeEvent
fn clone(&self) -> EmscriptenFullscreenChangeEvent
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 EmscriptenFullscreenChangeEvent
Auto Trait Implementations§
impl Freeze for EmscriptenFullscreenChangeEvent
impl RefUnwindSafe for EmscriptenFullscreenChangeEvent
impl Send for EmscriptenFullscreenChangeEvent
impl Sync for EmscriptenFullscreenChangeEvent
impl Unpin for EmscriptenFullscreenChangeEvent
impl UnwindSafe for EmscriptenFullscreenChangeEvent
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