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§
Sourcefn to_short_filename(self) -> Result<ShortFileName, FilenameError>
fn to_short_filename(self) -> Result<ShortFileName, FilenameError>
Try and convert this value into a ShortFileName
.