pub enum IEvent {
Key(KeyEvent),
Paste(String),
FocusGained,
FocusLost,
}Expand description
Event is a wrapper around crossterm’s Event enum NOTE: Resize taken out because it should be handled immediately
Variants§
Auto Trait Implementations§
impl Freeze for IEvent
impl RefUnwindSafe for IEvent
impl Send for IEvent
impl Sync for IEvent
impl Unpin for IEvent
impl UnwindSafe for IEvent
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