Rust中的队列,栈和双端队列
这是一个油管视频附带的文本内容, 该视频详细讲解 Queues, Stacks 和 Dequeues 这三种数据结构的特点.
而且还使用 Rust 代码来简单实现这些数据结构, 并且带有一定的性能测试.
原文链接: https://www.alxolr.com/articles/queues-stacks-deques-data-structures-coded-in-rust
使用builder模式构建 Rust API
本文比较详细的阐述了在使用 builder 模式构建 Rust 的代码时候的一些思考:
例如:
- Owned 和 可变引用的 选择
- Into 和 AsRef 的不同使用时机
- 默认值的设置
- 以及一些 builder 模式的辅助库等
原文链接: https://blog.logrocket.com/build-rust-api-builder-pattern/
arrow2: 0.15版本发布
Apache Arrow 的 rust crate,是除 c 之外功能最齐全的实现.
目前已发布 0.15 版本.
原文链接: https://github.com/jorgecarleitao/arrow2/releases/tag/v0.15.0
time: MSRV 策略的变更
从 2023-08-01 起, time 库的 MSRV 策略将会变更:
从支持六个月内的编译器版本变更为 只支持当前 stable 以及小两个版本. 例如, 当前版本是 1.66, 那么 MSRV 是 1.64.
原文链接: https://github.com/time-rs/time/discussions/535