#[repr(C)]
pub struct sapp_desc {
Show 28 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(_: *const sapp_event)>, pub fail_cb: Option<unsafe extern "C" fn(_: *const c_char)>, pub user_data: *mut c_void, pub init_userdata_cb: Option<unsafe extern "C" fn(_: *mut c_void)>, pub frame_userdata_cb: Option<unsafe extern "C" fn(_: *mut c_void)>, pub cleanup_userdata_cb: Option<unsafe extern "C" fn(_: *mut c_void)>, pub event_userdata_cb: Option<unsafe extern "C" fn(_: *const sapp_event, _: *mut c_void)>, pub fail_userdata_cb: Option<unsafe extern "C" fn(_: *const c_char, _: *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(_: *const sapp_event)>fail_cb: Option<unsafe extern "C" fn(_: *const c_char)>user_data: *mut c_voidinit_userdata_cb: Option<unsafe extern "C" fn(_: *mut c_void)>frame_userdata_cb: Option<unsafe extern "C" fn(_: *mut c_void)>cleanup_userdata_cb: Option<unsafe extern "C" fn(_: *mut c_void)>event_userdata_cb: Option<unsafe extern "C" fn(_: *const sapp_event, _: *mut c_void)>fail_userdata_cb: Option<unsafe extern "C" fn(_: *const c_char, _: *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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

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

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

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

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.