fm-tui 0.2.3

FM : a file manager inspired by ranger and dired{n}{n}Config files ~/.config/fm/{n}Documentation https://github.com/qkzk/fm{n}
Documentation
use crate::modes::{InputCompleted, InputSimple, MarkAction, Menu, Navigate, NeedConfirmation};

/// Line describing the mode and its custom keybinds
pub trait SecondLine {
    /// Line describing the mode and its custom keybinds
    fn second_line(&self) -> &'static str;
}

impl SecondLine for Menu {
    fn second_line(&self) -> &'static str {
        match self {
            Self::Navigate(navigate) => navigate.second_line(),
            Self::InputSimple(input_simple) => input_simple.second_line(),
            Self::NeedConfirmation(need_confirmation) => need_confirmation.second_line(),
            Self::InputCompleted(input_completed) => input_completed.second_line(),
            Self::Nothing => "",
        }
    }
}

impl SecondLine for Navigate {
    fn second_line(&self) -> &'static str {
        match self {
            Self::Trash => "Trash. Select an element to be restored or deleted.",
            Self::History => "Pick a destination",
            Self::Shortcut => "Pick a destination",
            Self::Compress => "Archive and compress the flagged files using selected algorithm.",
            Self::Marks(mark_action) => mark_action.second_line(),
            Self::TempMarks(mark_action) => mark_action.second_line(),
            Self::Mount => "Symbols: M: mounted, U: not mounted, C: encrypted, R: removable, P: mtp device, L: loop device (iso)",
            Self::Context => "Pick an action",
            Self::TuiApplication => "Pick a command",
            Self::CliApplication => "Pick a command",
            Self::Cloud => "Remote navigation",
            Self::Picker => "Pick an item",
            Self::Flagged => "Pick a file",
        }
    }
}

impl SecondLine for MarkAction {
    fn second_line(&self) -> &'static str {
        match self {
            Self::Jump => "Select a mark to go to or type its symbol. <Backspace> erases the mark",
            Self::New => "Select a mark or type its char to update it. <Backspace> erases mark",
        }
    }
}

impl SecondLine for InputCompleted {
    fn second_line(&self) -> &'static str {
        match self {
            Self::Cd => "Type your destination",
            Self::Search => "Type a pattern to search",
            Self::Exec => "Type a program",
            Self::Action => "Type an fm action",
        }
    }
}

impl SecondLine for InputSimple {
    fn second_line(&self) -> &'static str {
        ""
    }
}

impl SecondLine for NeedConfirmation {
    fn second_line(&self) -> &'static str {
        ""
    }
}