[−][src]Struct tm_sys::ffi::tm_os_window_api
Fields
create_window: Option<unsafe extern "C" fn(title: *const c_char, rect: tm_rect_t, style_flags: tm_os_window_style, center_display: *const tm_display_o) -> *mut tm_window_o>update_window: Option<unsafe extern "C" fn(window: *mut tm_window_o) -> tm_window_update_result_t>wait: Option<unsafe extern "C" fn()>destroy_window: Option<unsafe extern "C" fn(window: *mut tm_window_o)>set_rect: Option<unsafe extern "C" fn(window: *mut tm_window_o, rect: tm_rect_t)>rect: Option<unsafe extern "C" fn(window: *const tm_window_o) -> tm_rect_t>dpi_scale_factor: Option<unsafe extern "C" fn(window: *const tm_window_o) -> f32>adjust_rect: Option<unsafe extern "C" fn(rect: tm_rect_t, dpi_scale_factor: f32, arg1: tm_os_window_adjust_rect) -> tm_rect_t>set_size: Option<unsafe extern "C" fn(window: *mut tm_window_o, width: f32, height: f32)>set_client_titlebar_area: Option<unsafe extern "C" fn(window: *mut tm_window_o, left_margin: f32, right_margin: f32)>has_user_requested_close: Option<unsafe extern "C" fn(window: *mut tm_window_o, reset: bool) -> bool>set_cursor_mode: Option<unsafe extern "C" fn(window: *mut tm_window_o, cursor_mode: tm_os_window_cursor_mode)>cursor_mode: Option<unsafe extern "C" fn(window: *mut tm_window_o) -> tm_os_window_cursor_mode>set_cursor: Option<unsafe extern "C" fn(window: *mut tm_window_o, cursor_mode: tm_os_window_cursor)>cursor: Option<unsafe extern "C" fn(window: *mut tm_window_o) -> tm_os_window_cursor>dropped_files: Option<unsafe extern "C" fn(window: *mut tm_window_o) -> *const tm_os_dropped_file_t>status: Option<unsafe extern "C" fn(window: *mut tm_window_o) -> tm_window_status_t>platform_data: Option<unsafe extern "C" fn(window: *const tm_window_o) -> tm_window_platform_data_o>window_from_point: Option<unsafe extern "C" fn(pos: tm_vec2_t) -> *mut tm_window_o>set_focus: Option<unsafe extern "C" fn(window: *mut tm_window_o)>set_window_state: Option<unsafe extern "C" fn(window: *mut tm_window_o, state: tm_os_window_state)>set_title: Option<unsafe extern "C" fn(window: *mut tm_window_o, title: *const c_char)>Trait Implementations
impl Clone for tm_os_window_api[src]
pub fn clone(&self) -> tm_os_window_api[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Copy for tm_os_window_api[src]
impl Debug for tm_os_window_api[src]
Auto Trait Implementations
impl RefUnwindSafe for tm_os_window_api
impl Send for tm_os_window_api
impl Sync for tm_os_window_api
impl Unpin for tm_os_window_api
impl UnwindSafe for tm_os_window_api
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
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]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,