mirror of
https://github.com/clap-rs/clap
synced 2024-12-15 07:12:32 +00:00
Apply suggestions from code review
Co-Authored-By: CreepySkeleton <creepy-skeleton@yandex.ru>
This commit is contained in:
parent
53eb192c3f
commit
2a6005657e
1 changed files with 3 additions and 3 deletions
|
@ -985,7 +985,7 @@ impl Error {
|
||||||
when: color,
|
when: color,
|
||||||
});
|
});
|
||||||
Error {
|
Error {
|
||||||
cause: format!("{}", e),
|
cause: e.to_string(),
|
||||||
message: format!("{} {}", c.error("error:"), e),
|
message: format!("{} {}", c.error("error:"), e),
|
||||||
kind: ErrorKind::Io,
|
kind: ErrorKind::Io,
|
||||||
info: None,
|
info: None,
|
||||||
|
@ -1046,12 +1046,12 @@ impl Display for Error {
|
||||||
|
|
||||||
impl From<io::Error> for Error {
|
impl From<io::Error> for Error {
|
||||||
fn from(e: io::Error) -> Self {
|
fn from(e: io::Error) -> Self {
|
||||||
Error::with_description(format!("{}", e), ErrorKind::Io)
|
Error::with_description(e.to_string(), ErrorKind::Io)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl From<std_fmt::Error> for Error {
|
impl From<std_fmt::Error> for Error {
|
||||||
fn from(e: std_fmt::Error) -> Self {
|
fn from(e: std_fmt::Error) -> Self {
|
||||||
Error::with_description(format!("{}", e), ErrorKind::Format)
|
Error::with_description(e.to_string(), ErrorKind::Format)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue