pub enum PackError {
Io(Error),
Walk(Error),
NotADirectory(PathBuf),
BadPattern {
pattern: String,
message: String,
},
ManifestSerialize(Error),
ManifestParse(Error),
MissingManifest,
UnsupportedFormat {
found: u32,
supported: u32,
},
DestinationExists(PathBuf),
}Expand description
Errors produced by the pack module.
Variants§
Io(Error)
An I/O error while reading the project or writing the archive.
Walk(Error)
The tree walk failed (permission denied, vanished directory, cycle).
NotADirectory(PathBuf)
The given path is not a directory.
BadPattern
A configured glob could not be compiled.
Carries the offending pattern so a typo in [pack] points at itself
rather than silently matching nothing.
Fields
ManifestSerialize(Error)
The manifest could not be serialized.
ManifestParse(Error)
The manifest could not be parsed.
MissingManifest
The archive did not begin with a pack.toml entry.
UnsupportedFormat
The archive was written by a newer pack format than this build reads.
Fields
DestinationExists(PathBuf)
The restore destination already exists and would be overwritten.
Trait Implementations§
Source§impl Error for PackError
impl Error for PackError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Auto Trait Implementations§
impl !RefUnwindSafe for PackError
impl !UnwindSafe for PackError
impl Freeze for PackError
impl Send for PackError
impl Sync for PackError
impl Unpin for PackError
impl UnsafeUnpin for PackError
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more