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
Not a great priority, but would be nice to create Python bindings with Pyo3
The text was updated successfully, but these errors were encountered:
Transmute wrapper structs to single field child (i.e. PSeries to Series). https://doc.rust-lang.org/reference/type-layout.html#the-transparent-representation
A Vec<Wrapper> to Vec<Child> is UB, because Vec is repr(rust). Use from_raw_parts and memory dealloc.
Vec<Wrapper> to Vec<Child>
Vec
repr(rust)
from_raw_parts
https://github.com/llogiq/rfcs/blob/collection-transmute/text/0000-collection-transmute.md rust-lang/rust-clippy#4484
Sorry, something went wrong.
Would consider them existent.
No branches or pull requests
Not a great priority, but would be nice to create Python bindings with Pyo3
The text was updated successfully, but these errors were encountered: