proc-macro-workshop:builder-5
审题
// This test case should be a freebie if the previous ones are already working.
// It shows that we can chain method calls on the builder.
use derive_builder::Builder;
#[derive(Builder)]
pub struct Command {
executable: String,
args: Vec<String>,
env: Vec<String>,
current_dir: String,
}
fn main() {
let command = Command::builder()
.executable("cargo".to_owned())
.args(vec!["build".to_owned(), "--release".to_owned()])
.env(vec![])
.current_dir("..".to_owned())
.build()
.unwrap();
assert_eq!(command.executable, "cargo");
}
这一题和前一题的差别在于setter
方法的链式调用,在第三关的时候我们已经说明了。
题解
可以回看一下第三关,这里简单的贴一下
// solution35.rs
pub(super) fn soultion(
fields: &crate::common::FieldsType,
builder_ident: &syn::Ident,
) -> proc_macro2::TokenStream {
let idents: Vec<_> = fields.iter().map(|f| &f.ident).collect();
let tys: Vec<_> = fields.iter().map(|f| &f.ty).collect();
quote::quote! {
impl #builder_ident {
#(
pub fn #idents(&mut self, #idents: #tys) -> &mut Self {
self.#idents = std::option::Option::Some(#idents);
// 返回自身引用,顺便解决第五题链式调用
self
}
)*
}
}
}
整体
整体结构不变
本作品采用《CC 协议》,转载必须注明作者和本文链接
推荐文章: