Crates.io | sus |
lib.rs | sus |
version | 0.1.1 |
source | src |
created_at | 2022-01-06 03:14:36.26148 |
updated_at | 2022-01-06 03:17:16.403534 |
description | A declarative macro that wraps any input with an unsafe block. |
homepage | |
repository | |
max_upload_size | |
id | 508774 |
size | 4,637 |
A macro that is useful when you want to give the impression that a block of code is questionable, dishonest or suspicious.
unsafe fn dangerous() {}
fn main() {
sus! {
dangerous()
}
}