pub struct WindowHandlers {
pub load: extern "C" fn(WindowPtr),
pub unload: extern "C" fn(WindowPtr),
pub appear: extern "C" fn(WindowPtr),
pub disappear: extern "C" fn(WindowPtr),
}
Fields§
§load: extern "C" fn(WindowPtr)
§unload: extern "C" fn(WindowPtr)
§appear: extern "C" fn(WindowPtr)
§disappear: extern "C" fn(WindowPtr)
Trait Implementations§
Source§impl Clone for WindowHandlers
impl Clone for WindowHandlers
Source§fn clone(&self) -> WindowHandlers
fn clone(&self) -> WindowHandlers
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreimpl Copy for WindowHandlers
Auto Trait Implementations§
impl Freeze for WindowHandlers
impl RefUnwindSafe for WindowHandlers
impl Send for WindowHandlers
impl Sync for WindowHandlers
impl Unpin for WindowHandlers
impl UnwindSafe for WindowHandlers
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more