mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
63 lines
3.0 KiB
Plaintext
63 lines
3.0 KiB
Plaintext
error[E0277]: `?` couldn't convert the error to `String`
|
|
--> $DIR/question-mark-result-err-mismatch.rs:14:22
|
|
|
|
|
LL | fn foo() -> Result<String, String> {
|
|
| ---------------------- expected `String` because of this
|
|
...
|
|
LL | .map_err(|e| {
|
|
| __________-
|
|
LL | | e;
|
|
| | - help: remove this semicolon
|
|
LL | | })
|
|
| |__________- this can't be annotated with `?` because it has type `Result<_, ()>`
|
|
LL | .map(|()| "")?;
|
|
| ^ the trait `From<()>` is not implemented for `String`, which is required by `Result<String, String>: FromResidual<Result<Infallible, ()>>`
|
|
|
|
|
= note: the question mark operation (`?`) implicitly performs a conversion on the error value using the `From` trait
|
|
= note: required for `Result<String, String>` to implement `FromResidual<Result<Infallible, ()>>`
|
|
|
|
error[E0277]: `?` couldn't convert the error to `String`
|
|
--> $DIR/question-mark-result-err-mismatch.rs:28:25
|
|
|
|
|
LL | fn bar() -> Result<(), String> {
|
|
| ------------------ expected `String` because of this
|
|
LL | let x = foo();
|
|
| ----- this has type `Result<_, String>`
|
|
...
|
|
LL | .map_err(|_| ())?;
|
|
| ---------------^ the trait `From<()>` is not implemented for `String`, which is required by `Result<(), String>: FromResidual<Result<Infallible, ()>>`
|
|
| |
|
|
| this can't be annotated with `?` because it has type `Result<_, ()>`
|
|
|
|
|
= note: the question mark operation (`?`) implicitly performs a conversion on the error value using the `From` trait
|
|
= help: the following other types implement trait `From<T>`:
|
|
<String as From<&String>>
|
|
<String as From<&mut str>>
|
|
<String as From<&str>>
|
|
<String as From<Box<str>>>
|
|
<String as From<Cow<'a, str>>>
|
|
<String as From<char>>
|
|
= note: required for `Result<(), String>` to implement `FromResidual<Result<Infallible, ()>>`
|
|
|
|
error[E0277]: `?` couldn't convert the error to `String`
|
|
--> $DIR/question-mark-result-err-mismatch.rs:48:11
|
|
|
|
|
LL | fn baz() -> Result<String, String> {
|
|
| ---------------------- expected `String` because of this
|
|
...
|
|
LL | .ok_or_else(|| {
|
|
| __________-
|
|
LL | | "Couldn't split the test string";
|
|
| | - help: remove this semicolon
|
|
LL | | })?;
|
|
| | -^ the trait `From<()>` is not implemented for `String`, which is required by `Result<String, String>: FromResidual<Result<Infallible, ()>>`
|
|
| |__________|
|
|
| this can't be annotated with `?` because it has type `Result<_, ()>`
|
|
|
|
|
= note: the question mark operation (`?`) implicitly performs a conversion on the error value using the `From` trait
|
|
= note: required for `Result<String, String>` to implement `FromResidual<Result<Infallible, ()>>`
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|