2020-11-05 13:29:48 +00:00
|
|
|
error: this pattern reimplements `Option::ok_or`
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/manual_ok_or.rs:11:5
|
2020-11-05 13:29:48 +00:00
|
|
|
|
|
|
|
|
LL | foo.map_or(Err("error"), |v| Ok(v));
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: replace with: `foo.ok_or("error")`
|
|
|
|
|
|
|
|
|
= note: `-D clippy::manual-ok-or` implied by `-D warnings`
|
2023-08-01 12:02:21 +00:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::manual_ok_or)]`
|
2020-11-05 13:29:48 +00:00
|
|
|
|
|
|
|
error: this pattern reimplements `Option::ok_or`
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/manual_ok_or.rs:14:5
|
2020-11-05 13:29:48 +00:00
|
|
|
|
|
|
|
|
LL | foo.map_or(Err("error"), Ok);
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: replace with: `foo.ok_or("error")`
|
|
|
|
|
2023-11-24 16:57:13 +00:00
|
|
|
error: called `map_or(Err(_), Ok)` on an `Option` value
|
|
|
|
--> $DIR/manual_ok_or.rs:14:5
|
|
|
|
|
|
|
|
|
LL | foo.map_or(Err("error"), Ok);
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try using `ok_or` instead: `foo.ok_or("error")`
|
|
|
|
|
|
|
|
|
= note: `-D clippy::option-map-or-err-ok` implied by `-D warnings`
|
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::option_map_or_err_ok)]`
|
|
|
|
|
2020-11-05 13:29:48 +00:00
|
|
|
error: this pattern reimplements `Option::ok_or`
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/manual_ok_or.rs:17:5
|
2020-11-05 13:29:48 +00:00
|
|
|
|
|
|
|
|
LL | None::<i32>.map_or(Err("error"), |v| Ok(v));
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: replace with: `None::<i32>.ok_or("error")`
|
|
|
|
|
|
|
|
error: this pattern reimplements `Option::ok_or`
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/manual_ok_or.rs:21:5
|
2020-11-05 13:29:48 +00:00
|
|
|
|
|
|
|
|
LL | / foo.map_or(Err::<i32, &str>(
|
|
|
|
LL | | &format!(
|
|
|
|
LL | | "{}{}{}{}{}{}{}",
|
|
|
|
LL | | "Alice", "Bob", "Sarah", "Marc", "Sandra", "Eric", "Jenifer")
|
|
|
|
LL | | ),
|
|
|
|
LL | | |v| Ok(v),
|
|
|
|
LL | | );
|
|
|
|
| |_____^
|
|
|
|
|
|
|
|
|
help: replace with
|
|
|
|
|
|
2021-08-11 14:21:33 +00:00
|
|
|
LL ~ foo.ok_or(&format!(
|
|
|
|
LL + "{}{}{}{}{}{}{}",
|
|
|
|
LL ~ "Alice", "Bob", "Sarah", "Marc", "Sandra", "Eric", "Jenifer"));
|
2020-11-05 13:29:48 +00:00
|
|
|
|
|
|
|
|
|
2023-11-24 16:57:13 +00:00
|
|
|
error: aborting due to 5 previous errors
|
2020-11-05 13:29:48 +00:00
|
|
|
|