Enum git_tempfile::create_dir::Error  [−][src]
pub enum Error<'a> {
    Intermediate {
        dir: &'a Path,
        kind: ErrorKind,
    },
    Permanent {
        dir: &'a Path,
        err: Error,
        retries_left: Retries,
        retries: Retries,
    },
}Expand description
The error returned by all().
Variants
A failure we will probably recover from by trying again.
A failure that ends the operation.
Show fields
Trait Implementations
Auto Trait Implementations
impl<'a> !RefUnwindSafe for Error<'a>impl<'a> !UnwindSafe for Error<'a>