pub enum AppEvent {
Protocol(ProtocolEvent),
Interaction(InteractionRequest),
Extension(ExtensionEvent),
Internal(InternalEvent),
}Expand description
Top-level event sent from KiroClient to the TUI.
Variants§
Protocol(ProtocolEvent)
Interaction(InteractionRequest)
Extension(ExtensionEvent)
Internal(InternalEvent)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for AppEvent
impl !RefUnwindSafe for AppEvent
impl Send for AppEvent
impl Sync for AppEvent
impl Unpin for AppEvent
impl UnsafeUnpin for AppEvent
impl !UnwindSafe for AppEvent
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