2 releases
0.1.1 | Jan 6, 2022 |
---|---|
0.1.0 | Jan 6, 2022 |
#21 in #wraps
4KB
sus - (an alternative to unsafe)
A macro that is useful when you want to give the impression that a block of code is questionable, dishonest or suspicious.
Usage Example
unsafe fn dangerous() {}
fn main() {
sus! {
dangerous()
}
}