Rust 更适合 serverless
为什么Rust 更适合用于 serverless ? 因为它对用户来说更快,尤其是冷启动时. 点击下面的 Lambda冷启动分析
链接 来体验一下不同语言的冷启动速度.
对<<Rust Web Programming>>
作者的访谈
这是对 <<Rust Web Programming>>
作者 Maxwell Flitton 的访谈, 主要介绍如何使用 Rust 来构建 web 服务.
边做边学: Rust构建 HTTP API 服务
本文详细介绍了如何使用 axum 来构建 web API.
derive_more
如库名所示, derive_more 可以让你轻松的 derive 更多的 trait 实现, 而不用去写一堆的重复代码.
use derive_more::{Add, Display, From, Into};
#[derive(PartialEq, From, Add)]
struct MyInt(i32);
#[derive(PartialEq, From, Into)]
struct Point2D {
x: i32,
y: i32,
}
#[derive(PartialEq, From, Add, Display)]
enum MyEnum {
#[display("int: {_0}")]
Int(i32),
Uint(u32),
#[display("nothing")]
Nothing,
}
assert!(MyInt(11) == MyInt(5) + 6.into());
assert!((5, 6) == Point2D { x: 5, y: 6 }.into());
assert!(MyEnum::Int(15) == (MyEnum::Int(8) + 7.into()).unwrap());
assert!(MyEnum::Int(15).to_string() == "int: 15");
assert!(MyEnum::Uint(42).to_string() == "42");
assert!(MyEnum::Nothing.to_string() == "nothing");
--
From 日报小组 BobQin,FBI小白 社区学习交流平台订阅:
1
共 0 条评论, 1 页
评论区
写评论还没有评论