-
Notifications
You must be signed in to change notification settings - Fork 188
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add ref_* methods for Dynamic. #902
Conversation
These methods does not take ownership and are easier to work with than their `into_*` counterparts.
Can these be replaced by |
Come to think of it and experimenting with a number of different names, I suggest I have actually put together a PR here: #904 Would you wait until I commit this, then rebase your further changes on top of it? |
Sure, I'm happy to wait. Also, why not |
Hhhmmm... Good idea. I'll change. |
Changed in #905 |
Is it necessary to keep the |
Well I guess the compiler can optimize the error handling away while compiling this crate? |
Yes it can... but I'm not sure having For others, |
I would close this for the time being until later date when more API needs to be added. |
These methods does not take ownership and are easier to work with than their
into_*
counterparts.