[][src]Trait alacritty_terminal::event::OnResize

pub trait OnResize {
    fn on_resize(&mut self, size: &SizeInfo);
}

Types that are interested in when the display is resized.

Required methods

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

Loading content...

Implementors

impl OnResize for Notifier[src]

impl OnResize for Pty[src]

fn on_resize(&mut self, size: &SizeInfo)[src]

Resize the PTY.

Tells the kernel that the window size changed with the new pixel dimensions and line/column counts.

Loading content...