#tell #trusted #compiler #unsafe #write

trustme

告诉编译器,你可以信任你编写不安全代码!

2个稳定版本

1.0.1 2023年7月2日

#584 in 编程语言

MIT 许可证

2KB

trustme

告诉编译器,你可以信任!

use trustme::*;

fn main() {
    let mut x: i32 = 0;
    let ptr = (&mut x) as *mut i32;
    trustme! {*ptr = 42};
    println!("{x}");
}

lib.rs:

告诉编译器,你可以信任。不再有关于不安全代码的错误 - 只需通过trustme 宏告诉编译器信任你,它就会停止打扰你!

无运行时依赖