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
I did this for Box<T> earlier (see Issue #438) using the rather naive approach of seeing if the type begins with the string "Box" and then searching for completions on the inner type. This method could easily be extended to the types you mentioned but involves a bit of repetition and is not terribly robust.
What would be ideal is to find implementations of Deref<Target=T> for a given type and then look for methods on the type T.
Update: This issue should hopefully be fixed now :)
Hi! Thank you for your effort on this wonderful project. It's a lifesaver for me :)
I would love it if it was possible to add completion for T when you have things like RwLockReadGuard, RwLockWriteGuard, MutexGuard, etc.
Thank you.
The text was updated successfully, but these errors were encountered: