so my understanding of what the rust `tempfile` cr...
# development
h
so my understanding of what the rust
tempfile
crate is actually doing, is using file system APIs to create a randomly-named directory in
/tmp
. then when the handle to that directory goes out of scope in Rust, it runs a
drop
method that deletes that same directory