When encountering a `Result<T, _>` or `Option<T>` where `T` has a field that's being accessed, suggest calling `.unwrap()` to get to the field.
70 lines
1.8 KiB
Plaintext
70 lines
1.8 KiB
Plaintext
error[E0609]: no field `longname` on type `Arc<S>`
|
|
--> $DIR/suggest-field-through-deref.rs:10:15
|
|
|
|
|
LL | let _ = x.longname;
|
|
| ^^^^^^^^
|
|
|
|
|
help: a field with a similar name exists
|
|
|
|
|
LL | let _ = x.long_name;
|
|
| ~~~~~~~~~
|
|
|
|
error[E0609]: no field `longname` on type `S`
|
|
--> $DIR/suggest-field-through-deref.rs:12:15
|
|
|
|
|
LL | let _ = y.longname;
|
|
| ^^^^^^^^
|
|
|
|
|
help: a field with a similar name exists
|
|
|
|
|
LL | let _ = y.long_name;
|
|
| ~~~~~~~~~
|
|
|
|
error[E0609]: no field `longname` on type `Option<Arc<S>>`
|
|
--> $DIR/suggest-field-through-deref.rs:14:15
|
|
|
|
|
LL | let _ = a.longname;
|
|
| ^^^^^^^^
|
|
|
|
|
help: a field with a similar name exists
|
|
|
|
|
LL | let _ = a.unwrap().long_name;
|
|
| ~~~~~~~~~~~~~~~~~~
|
|
|
|
error[E0609]: no field `long_name` on type `Option<S>`
|
|
--> $DIR/suggest-field-through-deref.rs:16:15
|
|
|
|
|
LL | let _ = b.long_name;
|
|
| ^^^^^^^^^
|
|
|
|
|
help: one of the expressions' fields has a field of the same name
|
|
|
|
|
LL | let _ = b.unwrap().long_name;
|
|
| +++++++++
|
|
|
|
error[E0609]: no field `longname` on type `Result<Arc<S>, ()>`
|
|
--> $DIR/suggest-field-through-deref.rs:18:15
|
|
|
|
|
LL | let _ = c.longname;
|
|
| ^^^^^^^^
|
|
|
|
|
help: a field with a similar name exists
|
|
|
|
|
LL | let _ = c.unwrap().long_name;
|
|
| ~~~~~~~~~~~~~~~~~~
|
|
|
|
error[E0609]: no field `long_name` on type `Result<S, ()>`
|
|
--> $DIR/suggest-field-through-deref.rs:20:15
|
|
|
|
|
LL | let _ = d.long_name;
|
|
| ^^^^^^^^^
|
|
|
|
|
help: one of the expressions' fields has a field of the same name
|
|
|
|
|
LL | let _ = d.unwrap().long_name;
|
|
| +++++++++
|
|
|
|
error: aborting due to 6 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0609`.
|