7 lines
151 B
Rust
7 lines
151 B
Rust
pub struct UnlinkOnDrop<'a>(pub &'a str);
|
|
|
|
impl<'a> Drop for UnlinkOnDrop<'a> {
|
|
fn drop(&mut self) {
|
|
let _ = uapi::unlink(self.0);
|
|
}
|
|
}
|