2017-10-17 11:09:10 -05:00
error: consider implementing `TryFrom` instead
2022-10-06 02:44:38 -05:00
--> $DIR/fallible_impl_from.rs:6:1
2018-08-01 09:30:44 -05:00
|
2018-12-27 09:57:55 -06:00
LL | / impl From<String> for Foo {
2023-08-24 14:32:12 -05:00
LL | |
2018-12-27 09:57:55 -06:00
LL | | fn from(s: String) -> Self {
LL | | Foo(s.parse().unwrap())
LL | | }
LL | | }
2018-08-01 09:30:44 -05:00
| |_^
|
2021-03-12 08:30:50 -06:00
= help: `From` is intended for infallible conversions only. Use `TryFrom` if there's a possibility for the conversion to fail
2017-10-17 11:09:10 -05:00
note: potential failure(s)
2023-08-24 14:32:12 -05:00
--> $DIR/fallible_impl_from.rs:9:13
2018-08-01 09:30:44 -05:00
|
2018-12-27 09:57:55 -06:00
LL | Foo(s.parse().unwrap())
2018-08-01 09:30:44 -05:00
| ^^^^^^^^^^^^^^^^^^
2022-09-22 11:04:22 -05:00
note: the lint level is defined here
--> $DIR/fallible_impl_from.rs:1:9
|
LL | #![deny(clippy::fallible_impl_from)]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
2017-10-17 11:09:10 -05:00
error: consider implementing `TryFrom` instead
2023-08-24 14:32:12 -05:00
--> $DIR/fallible_impl_from.rs:28:1
2017-10-17 11:09:10 -05:00
|
2018-12-27 09:57:55 -06:00
LL | / impl From<usize> for Invalid {
2023-08-24 14:32:12 -05:00
LL | |
2018-12-27 09:57:55 -06:00
LL | | fn from(i: usize) -> Invalid {
LL | | if i != 42 {
2017-10-17 11:09:10 -05:00
... |
2018-12-27 09:57:55 -06:00
LL | | }
LL | | }
2017-10-17 11:09:10 -05:00
| |_^
|
2021-03-12 08:30:50 -06:00
= help: `From` is intended for infallible conversions only. Use `TryFrom` if there's a possibility for the conversion to fail
2017-10-17 11:09:10 -05:00
note: potential failure(s)
2023-08-24 14:32:12 -05:00
--> $DIR/fallible_impl_from.rs:32:13
2017-10-17 11:09:10 -05:00
|
2018-12-27 09:57:55 -06:00
LL | panic!();
2021-10-14 13:28:30 -05:00
| ^^^^^^^^
2022-06-20 21:25:52 -05:00
= note: this error originates in the macro `$crate::panic::panic_2021` which comes from the expansion of the macro `panic` (in Nightly builds, run with -Z macro-backtrace for more info)
2017-10-17 11:09:10 -05:00
error: consider implementing `TryFrom` instead
2023-08-24 14:32:12 -05:00
--> $DIR/fallible_impl_from.rs:38:1
2017-10-17 11:09:10 -05:00
|
2018-12-27 09:57:55 -06:00
LL | / impl From<Option<String>> for Invalid {
2023-08-24 14:32:12 -05:00
LL | |
2018-12-27 09:57:55 -06:00
LL | | fn from(s: Option<String>) -> Invalid {
LL | | let s = s.unwrap();
2017-10-17 11:09:10 -05:00
... |
2018-12-27 09:57:55 -06:00
LL | | }
LL | | }
2017-10-17 11:09:10 -05:00
| |_^
|
2021-03-12 08:30:50 -06:00
= help: `From` is intended for infallible conversions only. Use `TryFrom` if there's a possibility for the conversion to fail
2017-10-17 11:09:10 -05:00
note: potential failure(s)
2023-08-24 14:32:12 -05:00
--> $DIR/fallible_impl_from.rs:41:17
2017-10-17 11:09:10 -05:00
|
2018-12-27 09:57:55 -06:00
LL | let s = s.unwrap();
2017-10-17 11:09:10 -05:00
| ^^^^^^^^^^
2018-12-27 09:57:55 -06:00
LL | if !s.is_empty() {
2021-02-02 13:24:42 -06:00
LL | panic!("42");
2021-10-14 13:28:30 -05:00
| ^^^^^^^^^^^^
2018-12-27 09:57:55 -06:00
LL | } else if s.parse::<u32>().unwrap() != 42 {
2017-10-17 11:09:10 -05:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^
2018-12-27 09:57:55 -06:00
LL | panic!("{:?}", s);
2021-10-14 13:28:30 -05:00
| ^^^^^^^^^^^^^^^^^
2022-06-20 21:25:52 -05:00
= note: this error originates in the macro `$crate::panic::panic_2021` which comes from the expansion of the macro `panic` (in Nightly builds, run with -Z macro-backtrace for more info)
2017-10-17 11:09:10 -05:00
error: consider implementing `TryFrom` instead
2023-08-24 14:32:12 -05:00
--> $DIR/fallible_impl_from.rs:57:1
2017-10-17 11:09:10 -05:00
|
2018-12-27 09:57:55 -06:00
LL | / impl<'a> From<&'a mut <Box<u32> as ProjStrTrait>::ProjString> for Invalid {
2023-08-24 14:32:12 -05:00
LL | |
2018-12-27 09:57:55 -06:00
LL | | fn from(s: &'a mut <Box<u32> as ProjStrTrait>::ProjString) -> Invalid {
LL | | if s.parse::<u32>().ok().unwrap() != 42 {
2017-10-17 11:09:10 -05:00
... |
2018-12-27 09:57:55 -06:00
LL | | }
LL | | }
2017-10-17 11:09:10 -05:00
| |_^
|
2021-03-12 08:30:50 -06:00
= help: `From` is intended for infallible conversions only. Use `TryFrom` if there's a possibility for the conversion to fail
2017-10-17 11:09:10 -05:00
note: potential failure(s)
2023-08-24 14:32:12 -05:00
--> $DIR/fallible_impl_from.rs:60:12
2017-10-17 11:09:10 -05:00
|
2018-12-27 09:57:55 -06:00
LL | if s.parse::<u32>().ok().unwrap() != 42 {
2017-10-17 11:09:10 -05:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2018-12-27 09:57:55 -06:00
LL | panic!("{:?}", s);
2021-10-14 13:28:30 -05:00
| ^^^^^^^^^^^^^^^^^
2022-06-20 21:25:52 -05:00
= note: this error originates in the macro `$crate::panic::panic_2021` which comes from the expansion of the macro `panic` (in Nightly builds, run with -Z macro-backtrace for more info)
2017-10-17 11:09:10 -05:00
2018-01-16 10:06:27 -06:00
error: aborting due to 4 previous errors