英文:
duplicate definitions with name `is_soa`
问题
我的代码上周没问题。但是今天突然出现了这个错误:
错误[E0592]: 名为 `is_soa` 的定义重复
--> /.../.cargo/registry/src/github.com-1ecc6299db9ec823/trust-dns-proto-0.22.0/src/rr/record_data.rs:55:17
|
55 | #[derive(Debug, EnumAsInner, PartialEq, Clone, Eq)]
| ^^^^^^^^^^^ `is_soa` 的重复定义
...
994 | pub fn is_soa(&self) -> bool {
| ---------------------------- `is_soa` 的另一个定义
我使用的是: `rustc 1.68.0-nightly (bdb07a8ec 2022-12-11)`。
我升级到了最新的夜间版本: `rustc 1.72.0-nightly (1c53407e8 2023-05-28)`。
但错误似乎没有改变。有其他人也遇到过这个问题吗?
英文:
My code was fine last week. And out of nowhere today, this error suddenly appeared:
error[E0592]: duplicate definitions with name `is_soa`
--> /.../.cargo/registry/src/github.com-1ecc6299db9ec823/trust-dns-proto-0.22.0/src/rr/record_data.rs:55:17
|
55 | #[derive(Debug, EnumAsInner, PartialEq, Clone, Eq)]
| ^^^^^^^^^^^ duplicate definitions for `is_soa`
...
994 | pub fn is_soa(&self) -> bool {
| ---------------------------- other definition for `is_soa`
I'm using: rustc 1.68.0-nightly (bdb07a8ec 2022-12-11)
.
I upgraded to the latest nightly version: rustc 1.72.0-nightly (1c53407e8 2023-05-28)
.
But the error seems to be the same. Has someone else experience this, too?
答案1
得分: 2
抱歉,这是在GitHub上提出的问题。
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论