safe_attr
safe_attr provides a #[safe] attribute to mark functions with
What?
Take this example:
union Num
Now, you know this is perfectly safe. Both of the types are of the same size, converting it shouldn't require such verbosity. With safe_attr, you can now do:
use safe;
This attribute allows you to avoid spamming unsafes everywhere in code that doesn't require it.
This does not mean this attribute should be abused. It could easily lead to making unsafe code's bugs harder to track down in larger functions, and also simply makes it harder to find problem spots. As such, you are encouraged to still mark the function with a // Safety: comment, and furthermore only use this attribute for use cases similar to the above example.
How?
This attribute simply wraps the function's body in an unsafe. That's it.