macro_rules! safety {
(safe) => { ... };
(unsafe) => { ... };
(true) => { ... };
(false) => { ... };
}Expand description
Macro to convert a safety token (safe or unsafe) or a boolean literal to the corrsponding Safety marker type.