1use std::path::PathBuf; 2 3use crate::from_str::FromStr; 4 5impl FromStr for PathBuf { 6 fn from_str(str: &str) -> Self { 7 str.into() 8 } 9}