[][src]Enum broot::verb::Internal

pub enum Internal {
    back,
    close_panel_ok,
    close_panel_cancel,
    focus,
    help,
    input_del_char_left,
    input_del_char_below,
    input_del_word_left,
    input_del_word_right,
    input_go_to_end,
    input_go_left,
    input_go_right,
    input_go_to_start,
    input_go_word_left,
    input_go_word_right,
    line_down,
    line_up,
    open_stay,
    open_stay_filter,
    open_leave,
    next_match,
    no_sort,
    page_down,
    page_up,
    parent,
    panel_left,
    panel_right,
    previous_match,
    print_path,
    print_relative_path,
    print_tree,
    start_end_panel,
    quit,
    refresh,
    select_first,
    select_last,
    sort_by_count,
    sort_by_date,
    sort_by_size,
    toggle_counts,
    toggle_dates,
    toggle_files,
    toggle_git_ignore,
    toggle_git_file_info,
    toggle_git_status,
    toggle_hidden,
    toggle_perm,
    toggle_sizes,
    toggle_trim_root,
    total_search,
    up_tree,
}

Variants

back
close_panel_ok
close_panel_cancel
focus
help
input_del_char_left
input_del_char_below
input_del_word_left
input_del_word_right
input_go_to_end
input_go_left
input_go_right
input_go_to_start
input_go_word_left
input_go_word_right
line_down
line_up
open_stay
open_stay_filter
open_leave
next_match
no_sort
page_down
page_up
parent
panel_left
panel_right
previous_match
print_path
print_relative_path
print_tree
start_end_panel
quit
refresh
select_first
select_last
sort_by_count
sort_by_date
sort_by_size
toggle_counts
toggle_dates
toggle_files
toggle_git_ignore
toggle_git_file_info
toggle_git_status
toggle_hidden
toggle_perm
toggle_sizes
toggle_trim_root
up_tree

Implementations

impl Internal[src]

impl Internal[src]

pub fn name(self) -> &'static str[src]

pub fn description(self) -> &'static str[src]

pub fn applied_description(self, path: &Path) -> Option<String>[src]

impl Internal[src]

pub fn accept_path(self) -> bool[src]

whether this internal accept a path as (optional) argument

Trait Implementations

impl Clone for Internal[src]

impl Copy for Internal[src]

impl Debug for Internal[src]

impl PartialEq<Internal> for Internal[src]

impl StructuralPartialEq for Internal[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.