Skip to content

Commit

Permalink
Replaced std::string::ParseError impl with `std::convert::Infallibl…
Browse files Browse the repository at this point in the history
…e`, since the former is just a type alias for the latter.
  • Loading branch information
JRRudy1 committed Sep 8, 2024
1 parent a12b45e commit 3005c9f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/transient.rs
Original file line number Diff line number Diff line change
Expand Up @@ -428,20 +428,19 @@ mod std_impls {
f32, f64, String, Box<str>, (),
std::char::ParseCharError,
std::char::DecodeUtf16Error,
std::convert::Infallible,
std::num::ParseIntError,
std::num::ParseFloatError,
std::num::IntErrorKind,
std::num::TryFromIntError,
std::str::ParseBoolError,
std::str::Utf8Error,
std::string::ParseError,
std::string::FromUtf8Error,
std::string::FromUtf16Error,
std::net::AddrParseError,
std::io::Error,
std::io::ErrorKind,
std::fmt::Error,

std::env::VarError,
std::env::JoinPathsError,
std::time::SystemTimeError,
Expand Down

0 comments on commit 3005c9f

Please sign in to comment.