pub trait Name {
    // Required method
    fn name(&self) -> String;
}
Expand description

Extract the data that represents a name. This trait is implemented on all shell items to build the path. For example FileEntryShellItem Implements this to return file/directory name. See the implementation of the Path trait on shell_items::IDList struct for more info.

Required Methods§

source

fn name(&self) -> String

Implementors§