新增了一些新特性
#[non_exhaustive] structs, enums, and variants
這表示當前的屬性有缺少,要增加屬性欄位,沒增加是會出現錯誤的。
範例看到 beta 依賴 alhpa
// alpha/lib.rs:
#[non_exhaustive]
struct Foo {
pub a: bool,
}
enum Bar {
#[non_exhaustive]
Variant { b: u8 }
}
fn make_foo() -> Foo { ... }
fn make_bar() -> Bar { ... }
// beta/lib.rs:
let x = Foo { a: true }; //~ ERROR
let Foo { a } = make_foo(); //~ ERROR
// `beta` will still compile when more fields are added.
let Foo { a, .. } = make_foo(); //~ OK
let x = Bar::Variant { b: 42 }; //~ ERROR
let Bar::Variant { b } = make_bar(); //~ ERROR
let Bar::Variant { b, .. } = make_bar(); //~ OK
// -- `beta` will still compile...
現在可以這樣寫 expand_to_type 是 procedural macro
type Foo = expand_to_type!(bar);
extern 裡面也可以有 macro
macro_rules! make_item { ($name:ident) => { fn $name(); } }
extern {
make_item!(alpha);
make_item!(beta);
}
Read more
至少要使用 rust 1.40.0
因為使用了 non_exhaustive 特性
與標準庫具有完全的相容性。每種類型都可以執行與標準庫對應的相同算法,反之亦然。類型可以在標準庫之間自由轉換。
Read more
Signal是一個通訊軟體,類似Line, WhatApps, Telegram, QQ
本文大部份是講他們遇到的分散式儲存問題,最後他們使用Raft同步。
Signal選擇將Rust用於我們的Raft實現,他們選擇的重點是因為正確性,而不是性能,因此即使有機會加快某些操作的速度,我們也不會偏離Raft規範。
Read more
這個庫提供了 mitosis::spawn 他很像 thread::spawn
但實際上是產生了一個新的 process
但是用起來就像 thread::spawn 一樣簡單
Read more
作者原本使用 actix-web
但因為好奇心接觸了 Cloudflare Workers
Cloudflare Workers是支持Rust和WASM的無服務器平台。
使用Cloudflare Workers的主要優勢:
主要缺點:
那到底要怎麼使用 Cloudflare Workers 與 rust 結合呢?請看原始文章。
Read more
這是一個英文音頻節目
Read more
From 日报小组 @Damody