pub trait PathConvert {
// Required methods
fn to_cross_path(&self) -> PathResult<CrossPath>;
fn to_windows_path(&self) -> PathResult<String>;
fn to_unix_path(&self) -> PathResult<String>;
}Expand description
Path conversion trait
Extension trait to add conversion methods to string and path types