[][src]Struct tm_rs::ffi::tm_os_window_api

#[repr(C)]pub struct tm_os_window_api {
    pub create_window: Option<unsafe extern "C" fn(*const i8, tm_rect_t, i32, *const tm_display_o) -> *mut tm_window_o>,
    pub update_window: Option<unsafe extern "C" fn(*mut tm_window_o) -> tm_window_update_result_t>,
    pub wait: Option<unsafe extern "C" fn()>,
    pub destroy_window: Option<unsafe extern "C" fn(*mut tm_window_o)>,
    pub set_rect: Option<unsafe extern "C" fn(*mut tm_window_o, tm_rect_t)>,
    pub rect: Option<unsafe extern "C" fn(*const tm_window_o) -> tm_rect_t>,
    pub dpi_scale_factor: Option<unsafe extern "C" fn(*const tm_window_o) -> f32>,
    pub adjust_rect: Option<unsafe extern "C" fn(tm_rect_t, f32, i32) -> tm_rect_t>,
    pub set_size: Option<unsafe extern "C" fn(*mut tm_window_o, f32, f32)>,
    pub set_client_titlebar_area: Option<unsafe extern "C" fn(*mut tm_window_o, f32, f32)>,
    pub has_user_requested_close: Option<unsafe extern "C" fn(*mut tm_window_o, bool) -> bool>,
    pub set_cursor_mode: Option<unsafe extern "C" fn(*mut tm_window_o, i32)>,
    pub cursor_mode: Option<unsafe extern "C" fn(*mut tm_window_o) -> i32>,
    pub set_cursor: Option<unsafe extern "C" fn(*mut tm_window_o, i32)>,
    pub cursor: Option<unsafe extern "C" fn(*mut tm_window_o) -> i32>,
    pub dropped_files: Option<unsafe extern "C" fn(*mut tm_window_o) -> *const tm_os_dropped_file_t>,
    pub status: Option<unsafe extern "C" fn(*mut tm_window_o) -> tm_window_status_t>,
    pub platform_data: Option<unsafe extern "C" fn(*const tm_window_o) -> tm_window_platform_data_o>,
    pub window_from_point: Option<unsafe extern "C" fn(tm_vec2_t) -> *mut tm_window_o>,
    pub set_focus: Option<unsafe extern "C" fn(*mut tm_window_o)>,
    pub set_window_state: Option<unsafe extern "C" fn(*mut tm_window_o, i32)>,
    pub set_title: Option<unsafe extern "C" fn(*mut tm_window_o, *const i8)>,
}

Fields

create_window: Option<unsafe extern "C" fn(*const i8, tm_rect_t, i32, *const tm_display_o) -> *mut tm_window_o>update_window: Option<unsafe extern "C" fn(*mut tm_window_o) -> tm_window_update_result_t>wait: Option<unsafe extern "C" fn()>destroy_window: Option<unsafe extern "C" fn(*mut tm_window_o)>set_rect: Option<unsafe extern "C" fn(*mut tm_window_o, tm_rect_t)>rect: Option<unsafe extern "C" fn(*const tm_window_o) -> tm_rect_t>dpi_scale_factor: Option<unsafe extern "C" fn(*const tm_window_o) -> f32>adjust_rect: Option<unsafe extern "C" fn(tm_rect_t, f32, i32) -> tm_rect_t>set_size: Option<unsafe extern "C" fn(*mut tm_window_o, f32, f32)>set_client_titlebar_area: Option<unsafe extern "C" fn(*mut tm_window_o, f32, f32)>has_user_requested_close: Option<unsafe extern "C" fn(*mut tm_window_o, bool) -> bool>set_cursor_mode: Option<unsafe extern "C" fn(*mut tm_window_o, i32)>cursor_mode: Option<unsafe extern "C" fn(*mut tm_window_o) -> i32>set_cursor: Option<unsafe extern "C" fn(*mut tm_window_o, i32)>cursor: Option<unsafe extern "C" fn(*mut tm_window_o) -> i32>dropped_files: Option<unsafe extern "C" fn(*mut tm_window_o) -> *const tm_os_dropped_file_t>status: Option<unsafe extern "C" fn(*mut tm_window_o) -> tm_window_status_t>platform_data: Option<unsafe extern "C" fn(*const tm_window_o) -> tm_window_platform_data_o>window_from_point: Option<unsafe extern "C" fn(tm_vec2_t) -> *mut tm_window_o>set_focus: Option<unsafe extern "C" fn(*mut tm_window_o)>set_window_state: Option<unsafe extern "C" fn(*mut tm_window_o, i32)>set_title: Option<unsafe extern "C" fn(*mut tm_window_o, *const i8)>

Trait Implementations

impl Clone for tm_os_window_api[src]

impl Copy for tm_os_window_api[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T> Any for T where
    T: Any
[src]

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

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

impl<T> CloneAny for T where
    T: Clone + Any
[src]

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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.

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.