Run cargo fmt removing redundant braces

This commit is contained in:
Spyros Roum 2021-10-15 14:49:05 +03:00
parent d852a5897c
commit 702e7622db

View File

@ -103,34 +103,31 @@ impl fmt::Display for Error {
.detail("This is unadvisable since ouch does compressions in-memory.") .detail("This is unadvisable since ouch does compressions in-memory.")
.hint("Use a more appropriate tool for this, such as rsync.") .hint("Use a more appropriate tool for this, such as rsync.")
} }
Error::MissingArgumentsForCompression => { Error::MissingArgumentsForCompression => FinalError::with_title("Could not compress")
FinalError::with_title("Could not compress") .detail("The compress command requires at least 2 arguments")
.detail("The compress command requires at least 2 arguments") .hint("You must provide:")
.hint("You must provide:") .hint(" - At least one input argument.")
.hint(" - At least one input argument.") .hint(" - The output argument.")
.hint(" - The output argument.") .hint("")
.hint("") .hint("Example: `ouch compress image.png img.zip`"),
.hint("Example: `ouch compress image.png img.zip`") Error::MissingArgumentsForDecompression => FinalError::with_title("Could not decompress")
} .detail("The compress command requires at least one argument")
Error::MissingArgumentsForDecompression => { .hint("You must provide:")
FinalError::with_title("Could not decompress") .hint(" - At least one input argument.")
.detail("The compress command requires at least one argument") .hint("")
.hint("You must provide:") .hint("Example: `ouch decompress imgs.tar.gz`"),
.hint(" - At least one input argument.") Error::InternalError => FinalError::with_title("InternalError :(")
.hint("") .detail("This should not have happened")
.hint("Example: `ouch decompress imgs.tar.gz`") .detail("It's probably our fault")
} .detail("Please help us improve by reporting the issue at:")
Error::InternalError => { .detail(format!(" {}https://github.com/vrmiguel/ouch/issues ", cyan())),
FinalError::with_title("InternalError :(")
.detail("This should not have happened")
.detail("It's probably our fault")
.detail("Please help us improve by reporting the issue at:")
.detail(format!(" {}https://github.com/vrmiguel/ouch/issues ", cyan()))
}
Error::OofError(err) => FinalError::with_title(err), Error::OofError(err) => FinalError::with_title(err),
Error::IoError { reason } => FinalError::with_title(reason), Error::IoError { reason } => FinalError::with_title(reason),
Error::CompressionTypo => FinalError::with_title("Possible typo detected") Error::CompressionTypo => FinalError::with_title("Possible typo detected").hint(format!(
.hint(format!("Did you mean '{}ouch compress{}'?", magenta(), reset())), "Did you mean '{}ouch compress{}'?",
magenta(),
reset()
)),
Error::UnknownExtensionError(_) => todo!(), Error::UnknownExtensionError(_) => todo!(),
Error::AlreadyExists => todo!(), Error::AlreadyExists => todo!(),
Error::InvalidZipArchive(_) => todo!(), Error::InvalidZipArchive(_) => todo!(),