pub trait OnResize {
    // Required method
    fn on_resize(&mut self, size: &SizeInfo);
}
Expand description

Types that are interested in when the display is resized

Required Methods§

source

fn on_resize(&mut self, size: &SizeInfo)

Implementors§