#cow #proc-macro #struct #fields

cow_struct

派生具有克隆写入字段的struct

1个不稳定版本

0.3.1 2021年1月25日
0.0.1 2021年1月25日

#63 in #cow

MIT 许可证

5KB

派生CowStruct

该crate包含一个过程宏派生工具,该工具提供了一种Cow struct以及从目标struct创建Cow的impl。

使用方法

    use cow_struct::CowStruct;

    #[derive(Debug, Default, CowStruct)]
    struct A {
        a: LargeStruct,
        b: OtherLargeStruct,
        c: AnotherOne,
        ...
        z: YetAnother,
    }

    fn evaluation(cfg: &Config, state: &mut CowA) -> usize { ... }

    fn foo() {
        // original struct
        let a = A::new();

        let mut val = 0;
        // similar struct, with all the fields set as Cow::Borrowed from a;
        let mut cow = a.to_cow();
        let mut cow_out = cow.to_cow();
        let mut v_max = usize::min();
        for cfg in inputs() {
            // it is going to change cow, a remains untouched
            let val = evaluation(cfg, &mut cow);

            // let's pick the best candidate
            for candidate in candidates_b(val) {
                let mut cow2 = cow.to_cow();
                let v = evaluation_b(candidate, &mut cow2);
                if v > v_max {
                    v_max = v;
                    cow_out = cow2;
                }
            }
        }
    }

依赖关系

~1.5MB
~35K SLoC