pub enum InputEvent {
FetchResource(Resource),
Input(Key),
Tick,
NextBlockFound(u64),
}Variants§
FetchResource(Resource)
Input(Key)
An input event occurred.
Tick
An tick event occurred.
NextBlockFound(u64)
Auto Trait Implementations§
impl Freeze for InputEvent
impl RefUnwindSafe for InputEvent
impl Send for InputEvent
impl Sync for InputEvent
impl Unpin for InputEvent
impl UnwindSafe for InputEvent
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