链接:https://forum.sailfishos.org/t/release-notes-pallas-yllastunturi-3-4-0/2258
链接:https://www.abetterinternet.org/careers/le-sre-sw2/
Ringbahn是无船同志(without boats)基于io-uring 的 安全Rust 绑定。
柏林环线(ringbanhn, Berlin Ringbahn)是一条双轨通勤铁路,环绕柏林市中心形成一个完整的环形。类似地,IO -uring是一个新的异步IO接口,Linux内核构建在双环缓冲区数据结构上。基于async/await开发,100%内存安全。
这是无船一系列解读Ringbahn原理文章中的第三篇。
链接:https://without.boats/blog/ringbahn-iii/
作者使用Rust写了一个新的REPL库,并且还提供了两个命令p!
和d!
,分别代表println("{}", <var>)
和 println("{:?}", <var>)
。这个REPL的原理是把用户在整个session输入的代码统一放到一个rust文件的main函数中,然后调用rustc去编译执行,把捕获到的输出信息打印出来。
rust> p! "hello world"
hello world
rust> d! "hello world".find('h')
Some(0)
rust> let x = 5
rust> let y = x + 1
rust> p! x
5
rust> p! y
6
链接:https://git.simulacrum.party/simulacrumparty/rust-repl
-- From 日报小组 Folyd, broono
社区学习交流平台订阅:
Rustcc论坛: 支持rss
微信公众号:Rust语言中文社区