(no title)
mirashii | 1 day ago
It is absolutely a useful distinction on whether your users need to deal with unsafe themselves or not.
mirashii | 1 day ago
It is absolutely a useful distinction on whether your users need to deal with unsafe themselves or not.
kelnos|1 day ago
ahepp|1 day ago
cstrahan|1 day ago
If you’re thinking of higher level libraries, involving http, html, more typical file operations, etc, what you’re saying may generally be true. But if you’re dealing with Direct Memory Access, MCU peripherals, device drivers, etc, some or all of those libraries have two options: accept unsafe in the public interface, or simply don’t exist.
(I guess there’s a third option: lie about the unsafety and mark things as safe when they fundamentally, inherently are not and cannot be safe)
DetroitThrow|1 day ago
I have some experience and yes, unless you're putting out a library for specifically low-level behavior like manual memory management or FFI. Trivia about the unsafe fn keyword missed the point of my comment entirely.
DetroitThrow|1 day ago
No or very little but verified unsafe internal code is the bar for many Rust reimplementations. It would also be what keeps the code memory safe.