pub enum Error {
IoErr(Error),
IoErrContext(Error, String),
Error(String),
NotAllFilesCopied,
WalkDirErr(Error),
StripPrefixError(StripPrefixError),
Skipped(bool),
InvalidArgument(String),
NotImplemented(String),
Backup(String),
NotADirectory(PathBuf),
}Variants§
IoErr(Error)
Simple io::Error wrapper
IoErrContext(Error, String)
Wrapper for io::Error with path context
Error(String)
General copy error
NotAllFilesCopied
Represents the state when a non-fatal error has occurred and not all files were copied.
WalkDirErr(Error)
Simple walkdir::Error wrapper
StripPrefixError(StripPrefixError)
Simple std::path::StripPrefixError wrapper
Skipped(bool)
Result of a skipped file
Currently happens when “no” is selected in interactive mode or when
no-clobber flag is set and destination is already present.
exit with error is used to determine which exit code should be returned.
InvalidArgument(String)
Result of a skipped file
NotImplemented(String)
All standard options are included as an an implementation path, but those that are not implemented yet should return a NotImplemented error.
Backup(String)
Invalid arguments to backup
NotADirectory(PathBuf)
Trait Implementations§
Source§impl Error for Error
impl Error for Error
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()
Source§impl From<StripPrefixError> for Error
impl From<StripPrefixError> for Error
Source§fn from(err: StripPrefixError) -> Error
fn from(err: StripPrefixError) -> Error
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for Error
impl !RefUnwindSafe for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl !UnwindSafe for Error
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