usestd::{borrow::Cow, io,path::Path};/// Let `Path` and `PathBuf` have `parse_dot` method.
pubtraitParseDot{/// Remove dots in the path and create a new `PathBuf` instance on demand.
fnparse_dot(&self)->io::Result<Cow<'_, Path>>;/// Remove dots in the path and create a new `PathBuf` instance on demand. It gets the current working directory as the second argument.
fnparse_dot_from(&self, cwd: impl AsRef<Path>)->Cow<'_, Path>;}