pub enum EventType {
ScaleFactorChanged(f64, (u32, u32)),
Terminal(TerminalEvent),
ConfigReload(PathBuf),
Message(Message),
Scroll(Scroll),
CreateWindow(WindowOptions),
IpcConfig(IpcConfig),
BlinkCursor,
BlinkCursorTimeout,
SearchNext,
Frame,
}
Expand description
Alacritty events.
Variants§
ScaleFactorChanged(f64, (u32, u32))
Terminal(TerminalEvent)
ConfigReload(PathBuf)
Message(Message)
Scroll(Scroll)
CreateWindow(WindowOptions)
IpcConfig(IpcConfig)
BlinkCursor
BlinkCursorTimeout
SearchNext
Frame
Trait Implementations§
Auto Trait Implementations§
impl !RefUnwindSafe for EventType
impl Send for EventType
impl Sync for EventType
impl Unpin for EventType
impl !UnwindSafe for EventType
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