1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
use {
    crate::tree::TreeLineType,
};

pub trait IconPlugin {
    fn get_icon(
        &self,
        tree_line_type: &TreeLineType,
        name: &str,
        double_ext: Option<&str>,
        ext: Option<&str>,
    ) -> char;
}