Enum git_tempfile::create_dir::Error
source · [−]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
Intermediate
A failure we will probably recover from by trying again.
Permanent
Fields
dir: &'a Patherr: Errorretries_left: RetriesThe retries left after running the operation
retries: RetriesThe original amount of retries to allow determining how many were actually used
A failure that ends the operation.