Struct sapp_wasm::sapp_desc[][src]

#[repr(C)]
pub struct sapp_desc {
Show fields pub init_cb: Option<unsafe extern "C" fn()>, pub frame_cb: Option<unsafe extern "C" fn()>, pub cleanup_cb: Option<unsafe extern "C" fn()>, pub event_cb: Option<unsafe extern "C" fn(arg1: *const sapp_event)>, pub fail_cb: Option<unsafe extern "C" fn(arg1: *const c_char)>, pub user_data: *mut c_void, pub init_userdata_cb: Option<unsafe extern "C" fn(arg1: *mut c_void)>, pub frame_userdata_cb: Option<unsafe extern "C" fn(arg1: *mut c_void)>, pub cleanup_userdata_cb: Option<unsafe extern "C" fn(arg1: *mut c_void)>, pub event_userdata_cb: Option<unsafe extern "C" fn(arg1: *const sapp_event, arg2: *mut c_void)>, pub fail_userdata_cb: Option<unsafe extern "C" fn(arg1: *const c_char, arg2: *mut c_void)>, pub width: c_int, pub height: c_int, pub window_resizable: bool, pub sample_count: c_int, pub swap_interval: c_int, pub high_dpi: bool, pub fullscreen: bool, pub alpha: bool, pub window_title: *const c_char, pub user_cursor: bool, pub html5_canvas_name: *const c_char, pub html5_canvas_resize: bool, pub html5_preserve_drawing_buffer: bool, pub html5_premultiplied_alpha: bool, pub html5_ask_leave_site: bool, pub ios_keyboard_resizes_canvas: bool, pub gl_force_gles2: bool,
}

Fields

init_cb: Option<unsafe extern "C" fn()>frame_cb: Option<unsafe extern "C" fn()>cleanup_cb: Option<unsafe extern "C" fn()>event_cb: Option<unsafe extern "C" fn(arg1: *const sapp_event)>fail_cb: Option<unsafe extern "C" fn(arg1: *const c_char)>user_data: *mut c_voidinit_userdata_cb: Option<unsafe extern "C" fn(arg1: *mut c_void)>frame_userdata_cb: Option<unsafe extern "C" fn(arg1: *mut c_void)>cleanup_userdata_cb: Option<unsafe extern "C" fn(arg1: *mut c_void)>event_userdata_cb: Option<unsafe extern "C" fn(arg1: *const sapp_event, arg2: *mut c_void)>fail_userdata_cb: Option<unsafe extern "C" fn(arg1: *const c_char, arg2: *mut c_void)>width: c_intheight: c_intwindow_resizable: boolsample_count: c_intswap_interval: c_inthigh_dpi: boolfullscreen: boolalpha: boolwindow_title: *const c_charuser_cursor: boolhtml5_canvas_name: *const c_charhtml5_canvas_resize: boolhtml5_preserve_drawing_buffer: boolhtml5_premultiplied_alpha: boolhtml5_ask_leave_site: boolios_keyboard_resizes_canvas: boolgl_force_gles2: bool

Trait Implementations

impl Clone for sapp_desc[src]

fn clone(&self) -> sapp_desc[src]

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for sapp_desc[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl Copy for sapp_desc[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

impl<T> From<T> for T[src]

pub fn from(t: T) -> T[src]

Performs the conversion.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

pub fn into(self) -> U[src]

Performs the conversion.

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

pub fn to_owned(&self) -> T[src]

Creates owned data from borrowed data, usually by cloning. Read more

pub fn clone_into(&self, target: &mut T)[src]

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.