Rust 中的 std::ops 和 core::ops
2024-09-08
`std::ops` 和 `core::ops` 是 Rust 中两个常见的 trait 模块,都定义了运算符重载的 traits。
92 字
|
1 分钟
Rust 为什么需要 Pin
2024-09-08
Rust的异步编程中,编写自定义异步库时会遇到 `Pin<&mut Self>` 和 `T: ?Unpin` 等。这些概念源于自引用类型(self-referential types)的安全问题
226 字
|
1 分钟
Rust Debug Macro
2024-09-02
What does :#? mean in Rust debug macro?
209 字
|
1 分钟
Linux 使用 EDL 备份 Qualcomm 9008 设备
2024-08-13
记录使用 EDL 模式备份 Qualcomm 9008 设备的过程
253 字
|
1 分钟
Linux SMB 自动挂载
2024-08-11
使用 systemd .service 而不是 .mount 来管理 CIFS 挂载
293 字
|
1 分钟
Dart memory and WeakReferences
2024-08-09
Learn how memory management works in Dart and how to use WeakReferences.
289 字
|
1 分钟
appimagetool 打包出错
2024-08-04
具体报错为 Could not find section .digest_md5 in runtime
42 字
|
1 分钟
Dart 事件循环
2024-08-04
Dart 的事件循环是一个持续运行的程序,它管理所有的异步操作。主要由 微任务队列 和 事件队列 组成。
433 字
|
2 分钟