1
Fork 0

Migrate SuggestAccessingField

This commit is contained in:
IQuant 2023-03-03 16:17:53 +03:00
parent b36abea285
commit d56b304bc8
3 changed files with 35 additions and 22 deletions

View file

@ -360,3 +360,5 @@ infer_fn_consider_casting = consider casting the fn item to a fn pointer: `{$cas
infer_sarwa_option = you can convert from `&Option<T>` to `Option<&T>` using `.as_ref()`
infer_sarwa_result = you can convert from `&Result<T, E>` to `Result<&T, &E>` using `.as_ref()`
infer_suggest_accessing_field = you might have meant to use field `{$name}` whose type is `{$ty}`