Open eauxxs opened 1 month ago
Is this a trait method, or have trait constraints? You can try raising Chalk fuel (it isn't controlled by a setting, so you will need to compile from source):
@ChayimFriedman2 send_payment is just a impl method. I changed CHALK_SOLVER_FUEL to 100000, but same as before :(
rust-analyzer version: 0.3.2129-standalone
rustc version: rustc 1.81.0 (eeb90cda1 2024-09-04)
editor or extension: VSCode
relevant settings: Default
repository link (if public, optional): ldk-node
code snippet to reproduce: this line
channel_manger is a very complex struct with many generic parameters. It has a method called send_payment. In vscode, F12 jumps to the definition, and ra cannot recognize this method. But if I comment out a parameter, there will be such a prompt.
I can only use this method to jump to the corresponding location. But I don't have this problem when using rustrover. . . Is there any configuration method that can be used to solve this problem?
channel_manger is indeed a very complex struct. . . send_payment is just one example, there are many methods that cannot be recognized.