Enum rust_install::temp::Error [] [src]

pub enum Error {
    CreatingRoot {
        path: PathBuf,
        error: Error,
    },
    CreatingFile {
        path: PathBuf,
        error: Error,
    },
    CreatingDirectory {
        path: PathBuf,
        error: Error,
    },
}

Variants

CreatingRoot

Fields

path: PathBuf
error: Error
CreatingFile

Fields

path: PathBuf
error: Error
CreatingDirectory

Fields

path: PathBuf
error: Error