pub enum TermEvent {
Resize {
rows: u16,
cols: u16,
},
Key {
val: Key,
mods: Mods,
},
Weirdness {
buf: ArrayVec<[u8; 8]>,
},
}Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TermEvent
impl RefUnwindSafe for TermEvent
impl Send for TermEvent
impl Sync for TermEvent
impl Unpin for TermEvent
impl UnsafeUnpin for TermEvent
impl UnwindSafe for TermEvent
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