Creates an [`ExistingAbsoluteDir`] from an [`OutputDir`]. As [`OutputDir`] provides a more strict set of requirements, this can be infallible.
(value: &OutputDir)
| 126 | /// |
| 127 | /// As [`OutputDir`] provides a more strict set of requirements, this can be infallible. |
| 128 | fn from(value: &OutputDir) -> Self { |
| 129 | Self(value.to_path_buf()) |
| 130 | } |
| 131 | } |
| 132 | |
| 133 | impl TryFrom<&Path> for ExistingAbsoluteDir { |
nothing calls this directly
no test coverage detected