[][src]Trait ul::UltralightAppWindowCallbacks

pub trait UltralightAppWindowCallbacks<'a> {
    fn window_set_close_callback<T>(
        &self,
        cb: &'a mut T
    ) -> Result<(), NoneError>
    where
        T: FnMut()
;
fn window_set_resize_callback<T>(
        &self,
        cb: &'a mut T
    ) -> Result<(), NoneError>
    where
        T: FnMut(u32, u32)
; }

Required methods

fn window_set_close_callback<T>(&self, cb: &'a mut T) -> Result<(), NoneError> where
    T: FnMut(), 

fn window_set_resize_callback<T>(&self, cb: &'a mut T) -> Result<(), NoneError> where
    T: FnMut(u32, u32), 

Loading content...

Implementors

impl<'a> UltralightAppWindowCallbacks<'a> for UltralightApp<'a>[src]

Loading content...