110
Why Rust is the most admired language among developers?
(github.blog)
Welcome to the Rust community! This is a place to discuss about the Rust programming language.
Credits
I left something important out from my explanation. Your example still holds ownership of the data, so that’s where the rules are violated with those raw pointers. You have to use
Box::into_raw
or something similar to disassociate the data from the Rust compiler. Then you can alias it using raw pointers.