We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
#770 initially implemented AsRef<Base> for PyRef<T>.
AsRef<Base>
PyRef<T>
We had to remove that in #783 for native base types due to a safety issue in the implentation.
It would be ideal if AsRef could be implemented for PyRef<T> for both T and all bases of T - e.g. AsRef<T>, AsRef<T::Base>, AsRef<T::Base::Base> etc.
AsRef
T
AsRef<T>
AsRef<T::Base>
AsRef<T::Base::Base>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
#770 initially implemented
AsRef<Base>
forPyRef<T>
.We had to remove that in #783 for native base types due to a safety issue in the implentation.
It would be ideal if
AsRef
could be implemented forPyRef<T>
for bothT
and all bases ofT
- e.g.AsRef<T>
,AsRef<T::Base>
,AsRef<T::Base::Base>
etc.The text was updated successfully, but these errors were encountered: