Comment Re:Rust designed to mitigate limitations found in (Score 3, Informative) 66
Not quite. The safe c library is primarily about runtime memory safety checks which are a good thing. But rust is also about compile time enforcement of memory safety. This is not something you can get from a library for an existing language like C. That's not to say you couldn't make a C dialect that had rust-like guarantees.