pub trait TempDir { // Required method fn path(&self) -> &Path; }
Tracks a temporary directory that will be deleted once the struct goes out of scope.
Returns the Path of the temporary directory.
Path