bernardo-tui 0.2.7

A keyboard-only, distraction-free TUI widget library
Documentation
1
2
3
4
5
6
7
8
9
10
11
use std::fmt::Debug;

use crate::widget::any_msg::AnyMsg;

#[derive(Debug, Clone)]
pub enum ContextMenuMsg {
    UpdateQuery(String),
    Close,
}

impl AnyMsg for ContextMenuMsg {}