rmenu 0.1.3

A rofi and dmenu inspired menu
Documentation
#[derive(Debug)]
#[doc = "Represents a result of the interaction between the user and the GUI."]
pub enum GuiResult<T> {
    #[doc = "The user cancelled the GUI without selecting an option"]
    Cancel,
    #[doc = "The user selected an option from the GUI"]
    Option(T),
    #[doc = "The user entered a custom option"]
    Custom(T),
}