现在是可以这样
let user2 = User {
email: String::from("another@example.com"),
username: String::from("anotherusername567"),
..user1
};
那能不能我定义A,B两个结构体
struct A {
a1: isize,
a2: isize
}
struct B {
a3: isize,
..A
}
这样呢?
1
共 2 条评论, 1 页
评论区
写评论哭~~
这是以前的一个提案:“单继承”,最后被拒绝了。