Comment Re:I have to say by now I approve (Score 1) 88
There is nothing bad about(or worse) about using "unsafe" in Rust compared to say C.
Correct, nothing worse. But Rust has to be *better* than C at something for it to be a better choice, because without the memory safety guarantees, C is faster. C is also much better suited to tasks which impose structural order on byte buffers without moving data. Which happens a lot at the system programming level.