2019-04-17 19:50:50 -07:00
|
|
|
error[E0277]: `?` couldn't convert the error to `()`
|
2019-04-17 18:30:26 -07:00
|
|
|
--> $DIR/try-on-option.rs:7:6
|
2017-09-22 10:24:06 -05:00
|
|
|
|
|
2020-04-21 17:20:12 -07:00
|
|
|
LL | fn foo() -> Result<u32, ()> {
|
|
|
|
| --------------- expected `()` because of this
|
|
|
|
LL | let x: Option<u32> = None;
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | x?;
|
2020-09-02 10:40:56 +03:00
|
|
|
| ^ the trait `From<NoneError>` is not implemented for `()`
|
2017-09-22 10:24:06 -05:00
|
|
|
|
|
2019-05-17 12:18:56 -07:00
|
|
|
= note: the question mark operation (`?`) implicitly performs a conversion on the error value using the `From` trait
|
2020-09-02 10:40:56 +03:00
|
|
|
= note: required by `from`
|
2020-04-14 17:31:59 +02:00
|
|
|
help: consider converting the `Option<T>` into a `Result<T, _>` using `Option::ok_or` or `Option::ok_or_else`
|
|
|
|
|
|
2020-04-15 10:57:22 +02:00
|
|
|
LL | x.ok_or_else(|| /* error value */)?;
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2017-09-22 10:24:06 -05:00
|
|
|
|
2020-09-02 10:40:56 +03:00
|
|
|
error[E0277]: the `?` operator can only be used in a function that returns `Result` or `Option` (or another type that implements `Try`)
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/try-on-option.rs:13:5
|
2017-09-22 10:24:06 -05:00
|
|
|
|
|
2019-11-25 00:29:40 +03:00
|
|
|
LL | / fn bar() -> u32 {
|
|
|
|
LL | | let x: Option<u32> = None;
|
|
|
|
LL | | x?;
|
|
|
|
| | ^^ cannot use the `?` operator in a function that returns `u32`
|
|
|
|
LL | | 22
|
|
|
|
LL | | }
|
|
|
|
| |_- this function should return `Result` or `Option` to accept `?`
|
2017-09-22 10:24:06 -05:00
|
|
|
|
|
2020-09-02 10:40:56 +03:00
|
|
|
= help: the trait `Try` is not implemented for `u32`
|
|
|
|
= note: required by `from_error`
|
2017-09-22 10:24:06 -05:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
2018-03-03 15:59:40 +01:00
|
|
|
For more information about this error, try `rustc --explain E0277`.
|