2021-04-17 18:56:07 +00:00
|
|
|
error[E0277]: the `?` operator can only be used on `Result`s, not `Option`s, in a function that returns `Result`
|
|
|
|
--> $DIR/option-to-result.rs:5:6
|
|
|
|
|
|
2022-09-01 19:52:39 +00:00
|
|
|
LL | fn test_result() -> Result<(),()> {
|
|
|
|
| --------------------------------- this function returns a `Result`
|
|
|
|
LL | let a:Option<()> = Some(());
|
|
|
|
LL | a?;
|
|
|
|
| ^ use `.ok_or(...)?` to provide an error compatible with `Result<(), ()>`
|
2021-04-17 18:56:07 +00:00
|
|
|
|
|
|
|
|
= help: the trait `FromResidual<Option<Infallible>>` is not implemented for `Result<(), ()>`
|
2022-04-25 02:59:23 +00:00
|
|
|
= help: the following other types implement trait `FromResidual<R>`:
|
|
|
|
<Result<T, F> as FromResidual<Yeet<E>>>
|
2023-06-27 23:31:06 +00:00
|
|
|
<Result<T, F> as FromResidual<Result<Infallible, E>>>
|
2021-04-17 18:56:07 +00:00
|
|
|
|
2021-05-23 06:47:12 +00:00
|
|
|
error[E0277]: the `?` operator can only be used on `Option`s, not `Result`s, in a function that returns `Option`
|
2021-04-17 18:56:07 +00:00
|
|
|
--> $DIR/option-to-result.rs:11:6
|
|
|
|
|
|
2022-09-01 19:52:39 +00:00
|
|
|
LL | fn test_option() -> Option<i32>{
|
|
|
|
| ------------------------------- this function returns an `Option`
|
|
|
|
LL | let a:Result<i32, i32> = Ok(5);
|
|
|
|
LL | a?;
|
|
|
|
| ^ use `.ok()?` if you want to discard the `Result<Infallible, i32>` error information
|
2021-04-17 18:56:07 +00:00
|
|
|
|
|
|
|
|
= help: the trait `FromResidual<Result<Infallible, i32>>` is not implemented for `Option<i32>`
|
2022-04-25 02:59:23 +00:00
|
|
|
= help: the following other types implement trait `FromResidual<R>`:
|
|
|
|
<Option<T> as FromResidual<Yeet<()>>>
|
|
|
|
<Option<T> as FromResidual>
|
2021-04-17 18:56:07 +00:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|