//! Extensions for `PathBuf`
//!usestd::path::PathBuf;#[doc(hidden)]pubtraitPathBufExt{fnlast(&self)-> String;}implPathBufExt forPathBuf{/// returns the last component of a `PathBuf`, as a string.
fnlast(&self)-> String{self.components().next_back().unwrap().as_os_str().to_str().unwrap().to_owned()}}