rustc-ap-rustc_data_structures 674.0.0

Automatically published version of the package `rustc_data_structures` in the rust-lang/rust repository from commit 515c9fa505e18a65d7f61bc3e9eb833b79a68618 The publishing script for this crate lives at: https://github.com/alexcrichton/rustc-auto-publish
Documentation
use std::mem::ManuallyDrop;
use std::path::Path;
use tempfile::TempDir;

/// This is used to avoid TempDir being dropped on error paths unintentionally.
#[derive(Debug)]
pub struct MaybeTempDir {
    dir: ManuallyDrop<TempDir>,
    // Whether the TempDir should be deleted on drop.
    keep: bool,
}

impl Drop for MaybeTempDir {
    fn drop(&mut self) {
        // Safety: We are in the destructor, and no further access will
        // occur.
        let dir = unsafe { ManuallyDrop::take(&mut self.dir) };
        if self.keep {
            dir.into_path();
        }
    }
}

impl AsRef<Path> for MaybeTempDir {
    fn as_ref(&self) -> &Path {
        self.dir.path()
    }
}

impl MaybeTempDir {
    pub fn new(dir: TempDir, keep_on_drop: bool) -> MaybeTempDir {
        MaybeTempDir { dir: ManuallyDrop::new(dir), keep: keep_on_drop }
    }
}