作用
通过派生宏 #[derive(With)]
给结构体字段生成 with_xxx
方法,通过链式调用 with_xxx
方法来构造结构体。
使用方法
1.给 named struct 每个字段生成 with_xxx 方法
#[derive(With)]
pub struct Foo {
pub a: i32,
pub b: String,
}
宏生成代码
impl Foo {
pub fn with_a(mut self, a: impl Into<i32>) -> Self {
self.a = a.into();
self
}
pub fn with_b(mut self, b: impl Into<String>) -> Self {
self.b = b.into();
self
}
}
2.给 tuple struct 每个字段生成 with_xxx 方法
#[derive(With)]
pub struct Bar (i32, String);
宏生成代码
impl Bar {
pub fn with_0(mut self, field_0: impl Into<i32>) -> Self {
self.0 = field_0.into();
self
}
pub fn with_1(mut self, field_1: impl Into<String>) -> Self {
self.1 = field_1.into();
self
}
}
3.通过字段名给 named struct 指定字段实现 with_xxx 方法
#[derive(With)]
#[with(a)]
pub struct Foo {
pub a: i32,
pub b: String,
}
宏生成代码
impl Foo {
pub fn with_a(mut self, a: impl Into<i32>) -> Self {
self.a = a.into();
self
}
}
4.通过下标给 tuple struct 指定字段生成 with_xxx 方法
#[derive(With)]
#[with(1)]
pub struct Bar (i32, String);
宏生成代码
impl Bar {
pub fn with_1(mut self, field_1: impl Into<String>) -> Self {
self.1 = field_1.into();
self
}
}
也支持结构体中含有泛型、生命周期、引用等。
github: https://github.com/systemxlabs/derive-with
Ext Link: https://github.com/systemxlabs/derive-with
1
共 0 条评论, 1 页
评论区
写评论还没有评论