Enum bottom::BottomEvent
source · pub enum BottomEvent {
Resize,
KeyInput(KeyEvent),
MouseInput(MouseEvent),
PasteEvent(String),
Update(Box<Data>),
Clean,
Terminate,
}Expand description
Events sent to the main thread.
Variants§
Resize
KeyInput(KeyEvent)
MouseInput(MouseEvent)
PasteEvent(String)
Update(Box<Data>)
Clean
Terminate
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for BottomEvent
impl Send for BottomEvent
impl Sync for BottomEvent
impl Unpin for BottomEvent
impl UnwindSafe for BottomEvent
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