2021-04-18 09:37:47 -07:00
|
|
|
error[E0382]: use of moved value: `foo`
|
|
|
|
--> $DIR/as-ref-2.rs:12:14
|
|
|
|
|
|
|
|
|
LL | let foo = Some(Struct);
|
|
|
|
| --- move occurs because `foo` has type `Option<Struct>`, which does not implement the `Copy` trait
|
|
|
|
LL | let _x: Option<Struct> = foo.map(|s| bar(&s));
|
|
|
|
| ---------------- `foo` moved due to this method call
|
|
|
|
LL | let _y = foo;
|
|
|
|
| ^^^ value used here after move
|
|
|
|
|
|
|
|
|
note: this function takes ownership of the receiver `self`, which moves `foo`
|
|
|
|
--> $SRC_DIR/core/src/option.rs:LL:COL
|
|
|
|
|
|
2021-12-17 15:38:12 +08:00
|
|
|
LL | pub const fn map<U, F>(self, f: F) -> Option<U>
|
|
|
|
| ^^^^
|
2022-08-06 00:17:16 +00:00
|
|
|
help: consider calling `.as_ref()` or `.as_mut()` to borrow the type's contents
|
2021-04-18 09:37:47 -07:00
|
|
|
|
|
|
|
|
LL | let _x: Option<Struct> = foo.as_ref().map(|s| bar(&s));
|
2021-06-21 19:07:19 -07:00
|
|
|
| +++++++++
|
2021-04-18 09:37:47 -07:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0382`.
|