Skip to main content

OnDestroy

Trait OnDestroy 

Source
pub trait OnDestroy:
    Fn(&WebView) -> bool
    + Send
    + 'static { }
Expand description

Triggered when the window is being destroyed.

Implementors§

Source§

impl<T> OnDestroy for T
where T: Fn(&WebView) -> bool + Send + 'static,