1use lyon::path::Path; 2 3impl From<Path> for crate::path::Path { 4 fn from(value: Path) -> Self { 5 Self { inner: value } 6 } 7}