Trait filesystem::TempDir [] [src]

pub trait TempDir {
    fn path(&self) -> &Path;
}

Tracks a temporary directory that will be deleted once the struct goes out of scope.

Required Methods

Returns the Path of the temporary directory.

Implementors