You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Open the rust lib on a editor that has rust-analyzer enabled.
Open any rust file, find code that starts with:
#[godot_api]
impl IArea2D for SomeStruct {
}
Invoke the completion list inside of the impl block.
Vscode (Rust Analyzer):
Rust Rover (Non Rust Analyzer):
See that the completion list for Rust Analyzer is a Generic list (it has even println! and assert!, while the list provided by RustRover are the functions of the trait.