mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
41e8d152dc
Co-authored-by: Adrian <adrian.iosdev@gmail.com>
16 lines
600 B
Plaintext
16 lines
600 B
Plaintext
error[E0277]: the trait bound `TargetStruct: From<&{integer}>` is not satisfied
|
|
--> $DIR/suggest-dereferencing-receiver-argument.rs:13:30
|
|
|
|
|
LL | let _b: TargetStruct = a.into();
|
|
| ^^^^ the trait `From<&{integer}>` is not implemented for `TargetStruct`
|
|
|
|
|
= note: required for `&{integer}` to implement `Into<TargetStruct>`
|
|
help: consider dereferencing here
|
|
|
|
|
LL | let _b: TargetStruct = (*a).into();
|
|
| ++ +
|
|
|
|
error: aborting due to 1 previous error
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|