pub trait ToShortFileName {
    // Required method
    fn to_short_filename(self) -> Result<ShortFileName, FilenameError>;
}
Expand description

Describes things we can convert to short 8.3 filenames

Required Methods§

source

fn to_short_filename(self) -> Result<ShortFileName, FilenameError>

Try and convert this value into a ShortFileName.

Implementations on Foreign Types§

source§

impl ToShortFileName for &str

Implementors§