系统相关
首页 > 系统相关> > 【Rust日报】2020-11-23 使用 Enums 来减少内存使用

【Rust日报】2020-11-23 使用 Enums 来减少内存使用

作者:互联网

使用 Enums 来减少内存使用

Enum 在不存储真正数据的时候,仅仅需要1byte就可以代表多种状态. 根据这个特性, 作者把一些特殊场景下的内存使用大大降低了.原文链接:Decrease Memory Using Enums in Rust | DOM Events

WebAssembly Three Ways

作者对比了三种可以编译成 WebAssembly 的方式:

文中提供了各个语言的简单 demo 代码, 并且分别从 binary size, 执行速度等进行了简单的对比测试.原文链接:https://www.ianmccall.codes/post/2020/10/11/webassembly-three-ways.html

A Cool Generic Concurrency Primitive in Rust

这是 Crust of Rust 作者最新一期视频, 在此视频中, 作者会演示如何抽象出一个可复用的泛型版本的高性能无锁并发基础类型.油管视频链接:https://www.youtube.com/watch?v=eLNAMEoKAAc

inline-c: 在 Rust 中写 C/C++

inline-c是一个小巧的 crate, 使用该 crate 你可以在 Rust 中书写 c/c++代码. c 代码会被写入到临时文件中然后编译和执行.该 crate 的主要目标是减轻 C API 的测试. 有这方面需求的小伙伴可以看一下.示例代码:

use inline_c::assert_c;

fn test_stdout() {
   (assert_c! {
       #include <stdio.h>

       int main() {
           printf("Hello, World!");

           return 0;
       }
   })
   .success()
   .stdout("Hello, World!");
}

github 地址:https://github.com/Hywan/inline-c-rs--From 日报小组 BobQin,FBI小白


标签:11,23,crate,2020,内存,https,inline,Enums,Rust
来源: https://blog.51cto.com/u_15127605/2762162