//! Extensions for std::path
pubtraitPathBufExt{/// Remove all extensions from the path.
fnremove_all_extensions(&mutself);}implPathBufExt forstd::path::PathBuf{fnremove_all_extensions(&mutself){whileself.extension().is_some(){self.set_extension("");}}}