标签: rust
我想初始化一个仅引用其拥有的其他字段的结构。
写这样的东西有什么生锈的方法?
struct Foo { a: i32, b: &i32, } impl Foo { fn new() -> Self { Self { a: 0, b: &self.a, } } }
谢谢