Trait alacritty_terminal::event::Notify

source ·
pub trait Notify {
    // Required method
    fn notify<B: Into<Cow<'static, [u8]>>>(&self, _: B);
}
Expand description

Byte sequences are sent to a Notify in response to some events.

Required Methods§

source

fn notify<B: Into<Cow<'static, [u8]>>>(&self, _: B)

Notify that an escape sequence should be written to the PTY.

TODO this needs to be able to error somehow.

Object Safety§

This trait is not object safe.

Implementors§