Nemeski@mander.xyz to Rust@programming.dev · 14 days agoSwitching to Rust's own mangling scheme on nightlyblog.rust-lang.orgexternal-linkmessage-square6fedilinkarrow-up142arrow-down10
arrow-up142arrow-down1external-linkSwitching to Rust's own mangling scheme on nightlyblog.rust-lang.orgNemeski@mander.xyz to Rust@programming.dev · 14 days agomessage-square6fedilink
minus-squareTehPers@beehaw.orglinkfedilinkEnglisharrow-up3·13 days agoNo, the attribute is unsafe. An unsafe function is marked unsafe fn. Also, unsafe by itself just means there are invariants that must me manually upheld to avoid unsound behavior. If those invariants are upheld, then it doesn’t matter if it’s unsafe.
No, the attribute is unsafe. An unsafe function is marked
unsafe fn.Also, unsafe by itself just means there are invariants that must me manually upheld to avoid unsound behavior. If those invariants are upheld, then it doesn’t matter if it’s unsafe.